浏览代码

地图大小修改

sunzehao 4 月之前
父节点
当前提交
96a1df533d
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/views/economicsOperation/stationAnalyse/posAnalysis/index.vue

+ 3 - 3
src/views/economicsOperation/stationAnalyse/posAnalysis/index.vue

@@ -282,7 +282,7 @@
     /**配置参数 */
     const treeHeight = ref(window.innerHeight - 0 + "px"); //tree高度
     const excelHeight = ref(window.innerHeight - 0 + "px"); //excel高度
-    const tableHeight = ref(window.innerHeight - 40 + "px");
+    const tableHeight = ref(window.innerHeight - 60 + "px");
     /**excel 开始 */
     const excelCheckboxShow = ref(false);
     const excelCheckIds = ref([]);
@@ -1787,11 +1787,11 @@
 
         theme.value = store.state.theme;
         echartsTheme.value = !theme.value ? "dark" : "";
-        tableHeight.value = window.innerHeight - 40 + "px";
+        tableHeight.value = window.innerHeight - 60 + "px";
         excelHeight.value = window.innerHeight - 0 + "px";
         treeHeight.value = window.innerHeight - 0 + "px";
         window.addEventListener("resize", () => {
-            tableHeight.value = window.innerHeight - 40 + "px";
+            tableHeight.value = window.innerHeight - 60 + "px";
             excelHeight.value = window.innerHeight - 0 + "px";
             treeHeight.value = window.innerHeight - 0 + "px";
         });