<template>
|
<div class="echarts-wrapper" @click="toParentPage" @dblclick="dblclick">
|
<div class="echarts-content" ref="chart"></div>
|
</div>
|
</template>
|
|
<script>
|
import * as echarts from 'echarts';
|
import { WebSocketClass } from '@/assets/js/socket'
|
import { checkboxs } from '@/assets/js/powerInfoData'
|
export default {
|
name: "RoseChartED",
|
chart: "",
|
chartData: [],
|
props: {
|
id: {
|
type: String,
|
default: ""
|
}
|
},
|
data() {
|
return {
|
websock: null
|
}
|
},
|
methods: {
|
findParents(node, select) {
|
var parent = node.parentNode;
|
if (parent === null || parent.className.indexOf(select) != -1) {
|
return parent;
|
} else {
|
return this.findParents(parent, select);
|
}
|
},
|
dblclick(e) {
|
this.isAllScreen = !this.isAllScreen
|
let parents = this.findParents(e.currentTarget, 'vdr')
|
if (this.isAllScreen) {
|
this.parentsStyle = JSON.parse(JSON.stringify(parents.style));
|
parents.style.transform = 'none';
|
parents.style.width = '100%';
|
parents.style.height = '100%';
|
parents.style.position = 'fixed';
|
parents.style.left = 0;
|
parents.style.right = 0;
|
parents.style.bottom = 0;
|
parents.style.top = 0;
|
parents.style.zIndex = 99999;
|
} else {
|
parents.style.transform = this.parentsStyle.transform;
|
parents.style.width = this.parentsStyle.width;
|
parents.style.height = this.parentsStyle.height;
|
parents.style.position = this.parentsStyle.position;
|
parents.style.left = 'initial';
|
parents.style.right = 'initial';
|
parents.style.bottom = 'initial';
|
parents.style.top = 'initial';
|
parents.style.zIndex = 'auto';
|
}
|
this.$options.chart.resize();
|
},
|
toParentPage(value) {
|
if (typeof (value) == 'string') {
|
window.parent.parent.postMessage({
|
cmd: "syncPage",
|
params: {
|
pageInfo: {
|
label: "电池信息统计分析",
|
name: "produceTotal",
|
src: "#/dataMager/produceTotal/?xuHang=" + value,
|
closable: true
|
},
|
}
|
}, "*");
|
}
|
},
|
setOption(opt) {
|
this.$options.chart.setOption(opt);
|
this.$options.chart.on('click', (params) => {
|
console.log(params)
|
let name = params.name;
|
checkboxs.jfxh.map(item => {
|
if (item.label == name) {
|
this.toParentPage(item.value)
|
}
|
})
|
})
|
},
|
organizeData(data) {
|
let option = {
|
tooltip: {
|
trigger: 'item'
|
},
|
series: [{
|
type: 'pie',
|
center: ['50%', '50%'],
|
radius: ['0', '50%'],
|
itemStyle: {
|
color(params) {
|
return data[params.dataIndex].color;
|
},
|
},
|
data: data
|
}]
|
};
|
|
// 设置图表配置项
|
this.setOption(option);
|
},
|
setData(sendData) {
|
if (sendData) {
|
this.$options.chartData = sendData;
|
this.organizeData(sendData)
|
} else {
|
this.postData()
|
}
|
},
|
postData() {
|
let userId = localStorage.getItem('userId');
|
this.websock = new WebSocketClass(`/screen/batteryData/endurance/${userId}`, this.wsMessage)
|
},
|
wsMessage(res) {
|
if (res.code == 1) {
|
let optionData = [{
|
value: 0,
|
name: '续航1小时内',
|
color: '#E85D22'
|
},
|
{
|
value: 0,
|
name: '续航1小时到2小时',
|
color: '#76CFDD'
|
},
|
{
|
value: 0,
|
name: '续航2小时到3小时',
|
color: '#FEDB5B'
|
},
|
{
|
value: 0,
|
name: '续航3小时到5小时',
|
color: '#8278E9'
|
},
|
{
|
value: 0,
|
name: '续航5小时到8小时',
|
color: '#4ba0d9'
|
},
|
{
|
value: 0,
|
name: '续航8小时以上',
|
color: '#7fc57c'
|
},
|
]
|
let resData = res.data;
|
for (let key in resData) {
|
optionData.map(item => {
|
if (item.name == key) {
|
item.value = resData[key]
|
}
|
})
|
}
|
this.$options.chartData = optionData;
|
this.organizeData(optionData)
|
}
|
},
|
outClear() {
|
this.websock.closeMyself()
|
this.websock = null
|
window.removeEventListener('resize', this.resize);
|
},
|
resize() {
|
setTimeout(() => {
|
this.$options.chart.resize();
|
if (JSON.stringify(this.$options.chartData) != '{}') {
|
this.setData(this.$options.chartData);
|
}
|
}, 300)
|
}
|
},
|
mounted() {
|
// 基于准备好的dom,初始化echarts实例
|
this.$options.chart = echarts.init(this.$refs.chart);
|
|
window.addEventListener('resize', this.resize);
|
},
|
destroyed() {
|
window.removeEventListener('resize', this.resize);
|
}
|
}
|
</script>
|
|
<style scoped>
|
</style>
|