95 lines
2.1 KiB
Vue
95 lines
2.1 KiB
Vue
<template>
|
|
<div :class="className" :style="{height:height,width:width}" />
|
|
</template>
|
|
|
|
<script>
|
|
import echarts from 'echarts'
|
|
require('echarts/theme/macarons') // echarts theme
|
|
import { debounce } from '@/utils'
|
|
import { getPieChatData } from '@/api/dashboard/dashboard'
|
|
|
|
export default {
|
|
props: {
|
|
className: {
|
|
type: String,
|
|
default: 'chart'
|
|
},
|
|
width: {
|
|
type: String,
|
|
default: '100%'
|
|
},
|
|
height: {
|
|
type: String,
|
|
default: '300px'
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
chart: null,
|
|
dataList: [],
|
|
dataTitle: [],
|
|
}
|
|
},
|
|
mounted() {
|
|
this.initChart()
|
|
this.__resizeHandler = debounce(() => {
|
|
if (this.chart) {
|
|
this.chart.resize()
|
|
}
|
|
}, 100)
|
|
window.addEventListener('resize', this.__resizeHandler)
|
|
},
|
|
beforeDestroy() {
|
|
if (!this.chart) {
|
|
return
|
|
}
|
|
window.removeEventListener('resize', this.__resizeHandler)
|
|
this.chart.dispose()
|
|
this.chart = null
|
|
},
|
|
methods: {
|
|
async initChart() {
|
|
let iDataList = [];
|
|
let iDataTitle = [];
|
|
await getPieChatData().then(res => {
|
|
res.forEach(function (rItem) {
|
|
let name = rItem.text;
|
|
let value = rItem.value;
|
|
let item = { name: name, value: value }
|
|
iDataTitle.push(name)
|
|
iDataList.push(item)
|
|
});
|
|
})
|
|
this.dataList = iDataList;
|
|
this.dataTitle = iDataTitle;
|
|
|
|
this.chart = echarts.init(this.$el, 'macarons')
|
|
this.chart.setOption({
|
|
tooltip: {
|
|
trigger: 'item',
|
|
formatter: '{a} <br/>{b} : {c} ({d}%)'
|
|
},
|
|
legend: {
|
|
left: 'center',
|
|
bottom: '10',
|
|
data: this.dataTitle
|
|
},
|
|
calculable: true,
|
|
series: [
|
|
{
|
|
name: '设备指令统计',
|
|
type: 'pie',
|
|
roseType: 'radius',
|
|
radius: [15, 95],
|
|
center: ['50%', '38%'],
|
|
data: this.dataList,
|
|
animationEasing: 'cubicInOut',
|
|
animationDuration: 2600
|
|
}
|
|
]
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|