You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
Vue
64 lines
1.6 KiB
Vue
<template>
|
|
<div
|
|
class="bs-design-wrap"
|
|
:class="`bs-text-${customTheme}`"
|
|
>
|
|
<div
|
|
class="content-box"
|
|
:style="{'font-size': config.customize.fontSize +'px','font-weight': +config.customize.fontWeight,'background-image': `-webkit-linear-gradient(${config.customize.color})`}"
|
|
>
|
|
{{ config.customize.title }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import commonMixins from 'data-room-ui/js/mixins/commonMixins'
|
|
import paramsMixins from 'data-room-ui/js/mixins/paramsMixins'
|
|
export default {
|
|
name: 'Texts',
|
|
components: {},
|
|
mixins: [paramsMixins, commonMixins],
|
|
props: {
|
|
// 卡片的属性
|
|
config: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
customClass: {}
|
|
}
|
|
},
|
|
watch: {
|
|
},
|
|
mounted () {
|
|
this.chartInit()
|
|
},
|
|
methods: {
|
|
dataFormatting (config, data) {
|
|
// 文本数据配置原则:选择数据集则以后端返回的数据为主,否则以设置面板中标题设置为准
|
|
if (config.dataSource.businessKey) {
|
|
config.customize.title = data && data.data && data.data.length ? data.data[0][config.dataSource.metricField] : '暂无数据'
|
|
}
|
|
return config
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.bs-design-wrap{
|
|
width: 100%;
|
|
}
|
|
.content-box{
|
|
text-align: center;
|
|
/* 将背景设为渐变 */
|
|
/*background-image: -webkit-linear-gradient(left, #6294F7, #C85D14);*/
|
|
/* 规定背景绘制区域 */
|
|
-webkit-background-clip: text;
|
|
/* 将文字隐藏 */
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
</style>
|