|
@@ -450,10 +450,16 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ this.dataChange(dataJson.data)
|
|
|
+ this.tabledataChange(dataJson.data)
|
|
|
+ this.changePieData();
|
|
|
+ },
|
|
|
methods: {
|
|
|
// 获取公司列表
|
|
|
async getCompanyData() {
|
|
|
this.companyOptions = [];
|
|
|
+
|
|
|
this.pickerTimer = this.getchangeTime(new Date());
|
|
|
const { data: datas } = await getApicompanyslist();
|
|
|
this.companyOptions = datas.data;
|
|
@@ -490,7 +496,6 @@ export default {
|
|
|
};
|
|
|
this.comAnalysisData = [];
|
|
|
this.comAnalysisDataCompare = {};
|
|
|
- this.dataChange(dataJson.data)
|
|
|
const { data: datas } = await getApimaintoplist(params);
|
|
|
this.dataChange(datas)
|
|
|
this.changePieData();
|
|
@@ -514,7 +519,6 @@ export default {
|
|
|
type: this.tabIndex,
|
|
|
month: this.pickerTimer,
|
|
|
};
|
|
|
- this.tabledataChange(dataJson.data)
|
|
|
const { data: datas } = await getApimaincenterlist(params);
|
|
|
this.tabledataChange(datas)
|
|
|
},
|
|
@@ -604,7 +608,7 @@ export default {
|
|
|
},
|
|
|
getPieChart(nameTit, lenged, series, name) {
|
|
|
let option = {
|
|
|
- color: ["#05bb4c", "#ba3237", "#e17e23", "#fff", "#c531c7"],
|
|
|
+ color: ["#2999a0", "#67b9ff", "#ff6271", "#05b2fa", "#0ef167","#05bb4c", "#4b55ae"],
|
|
|
legend: {
|
|
|
type: "scroll",
|
|
|
orient: "vertical",
|
|
@@ -744,7 +748,7 @@ export default {
|
|
|
],
|
|
|
};
|
|
|
let dom = document.getElementById(name);
|
|
|
- dom.removeAttribute("_echarts_instance_");
|
|
|
+ dom ? dom.removeAttribute("_echarts_instance_") : '';
|
|
|
let myChart = echarts.init(dom);
|
|
|
myChart.clear();
|
|
|
myChart.setOption(option);
|