diff --git a/src/components/site/previewOfSiteStatus.vue b/src/components/site/previewOfSiteStatus.vue index d4932b2..7ab7a69 100644 --- a/src/components/site/previewOfSiteStatus.vue +++ b/src/components/site/previewOfSiteStatus.vue @@ -871,7 +871,7 @@ }, //点击历史数据 historyData(stCode) { - // console.log(stCode); + console.log(stCode); this.currentSiteNo = stCode; this.dialogVisible = true; setTimeout(() => { @@ -2810,7 +2810,7 @@ } }, labelHead(h, { column, index }) { - let l = column.label.length; + let l = column.label.length + 6; let f = 16; //每个字大小,其实是每个字的比例值,大概会比字体大小差不多大一点, column.minWidth = f * l; //字大小乘个数即长度 ,注意不要加px像素,这里minWidth只是一个比例值,不是真正的长度 //然后将列标题放在一个div块中,注意块的宽度一定要100%,否则表格显示不完全 @@ -2829,6 +2829,9 @@ window.historyData = this.historyData; }, */ mounted: function() { + // 默认加载所有的平台 + this.LoadAllProject(); + this.loadRegionEcharts(); // 根据平台渲染站点数量统计及状态统计 this.loadSiteNumForOroject(); @@ -2840,8 +2843,6 @@ this.loadSiteBaoJing(); // 返回出项目的坐标以及缩放等级**************************GIS调用 - // 默认加载所有的平台 - this.LoadAllProject(); this.createOlMap(); /* this.createMap(""); */ // 默认展示 全部 的请求 @@ -2859,7 +2860,8 @@ destroyed: function() { clearInterval(this.timer); clearInterval(this.timer2); - } + }, + created() {} };