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.
130 lines
3.0 KiB
Vue
130 lines
3.0 KiB
Vue
1 year ago
|
<template>
|
||
|
<div
|
||
|
:class="`bs-indexCard`"
|
||
|
style="width: 100%;height: 100%;position: relative;"
|
||
|
>
|
||
|
<div
|
||
|
:style="{
|
||
|
'background-color':customize.bgColor,
|
||
|
'border-radius':customize.borderRadius + 'px',
|
||
|
border:`${customize.borderWidth}px solid ${customize.borderColor}`,
|
||
|
}"
|
||
|
class="content"
|
||
|
>
|
||
|
<div
|
||
|
class="content-right-first"
|
||
|
:style="{
|
||
|
'font-size': customize.firstSize + 'px',
|
||
|
'height':customize.firstSize + 'px',
|
||
|
color:customize.firstColor,
|
||
|
'font-weight':customize.firstWeight,
|
||
|
'margin-bottom':customize.lineDistance +'px'
|
||
|
}"
|
||
|
>
|
||
|
{{ customize.secondLine }}
|
||
|
</div>
|
||
|
<div
|
||
|
:style="{
|
||
|
'font-size': customize.secondSize + 'px',
|
||
|
'height':customize.secondSize + 'px',
|
||
|
color:customize.secondColor,
|
||
|
'font-weight':customize.secondWeight,
|
||
|
}"
|
||
|
class="content-right-second"
|
||
|
>
|
||
|
{{ optionData }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import commonMixins from 'data-room-ui/js/mixins/commonMixins'
|
||
|
import paramsMixins from 'data-room-ui/js/mixins/paramsMixins'
|
||
|
import linkageMixins from 'data-room-ui/js/mixins/linkageMixins'
|
||
|
|
||
|
export default {
|
||
|
name: 'Card',
|
||
|
components: {},
|
||
|
mixins: [paramsMixins, commonMixins, linkageMixins],
|
||
|
props: {
|
||
|
// 卡片的属性
|
||
|
config: {
|
||
|
type: Object,
|
||
|
default: () => ({})
|
||
|
}
|
||
|
},
|
||
|
data () {
|
||
|
return {
|
||
|
customClass: {}
|
||
|
}
|
||
|
},
|
||
|
watch: {},
|
||
|
mounted () {
|
||
|
// this.chartInit()
|
||
|
},
|
||
|
computed: {
|
||
|
option () {
|
||
|
return this.config?.option
|
||
|
},
|
||
|
optionData () {
|
||
|
return this.option?.data || 80
|
||
|
},
|
||
|
customize () {
|
||
|
return this.config?.customize
|
||
|
},
|
||
|
// tableData () {
|
||
|
// let dataList = ''
|
||
|
// if (this.optionData instanceof Array && this.optionData.length > 0) {
|
||
|
// dataList = this.option?.yField
|
||
|
// ? this.optionData[0][this.option.yField]
|
||
|
// : this.optionData[0]?.value
|
||
|
// } else {
|
||
|
// dataList = this.optionData ? this.optionData[this.option.yField] : ''
|
||
|
// }
|
||
|
// return dataList
|
||
|
// }
|
||
|
},
|
||
|
methods: {
|
||
|
dataFormatting (config, data) {
|
||
|
let dataList = ''
|
||
|
if(data.success){
|
||
|
if (data.data instanceof Array) {
|
||
|
dataList = config.dataSource.dimensionField
|
||
|
? data.data[0][config.dataSource.dimensionField]
|
||
|
: data.data[0].value
|
||
|
} else {
|
||
|
dataList = data.data[config.dataSource.dimensionField]
|
||
|
}
|
||
|
}else{
|
||
|
dataList=0
|
||
|
}
|
||
|
config.option = {
|
||
|
...config.option,
|
||
|
data: dataList
|
||
|
}
|
||
|
return config
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.content{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
justify-content: center;
|
||
|
.content-right-first{
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
padding-bottom: 5px;
|
||
|
}
|
||
|
.content-right-second{
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|
||
|
</style>
|