瀏覽代碼

edit:fix> 新增item table无法设置高

YaolongHan 4 年之前
父節點
當前提交
52061e9011
共有 1 個文件被更改,包括 29 次插入24 次删除
  1. 29 24
      src/components/editview/leftToolBar/addItemModel.vue

+ 29 - 24
src/components/editview/leftToolBar/addItemModel.vue

@@ -418,37 +418,42 @@ export default {
         size: "min",
       });
     },
+    // 打开窗口初始化弹窗
+    initAddModel() {
+      const data = {
+        projectId: this.projectId,
+      };
+      // 建筑查询条件
+      buildiFloor(data).then((res) => {
+        this.buildFloorList = this.mapList(res.content);
+      });
+      // 设备类型查询条件
+      readCategory(data).then((res) => {
+        this.categoryList = this.mapList(
+          res.content,
+          [],
+          ["code", "name", "children"]
+        );
+      });
+      setTimeout(() => {
+        const domLeft = document.getElementById("left");
+        if (domLeft) {
+          this.tableHeight = domLeft.offsetHeight - 140;
+          // 调取设备接口
+          this.queryEquip();
+        }
+      });
+    },
   },
   watch: {
     // 是否打开弹窗
     showAddItemModel(val) {
       this.isShowModel = val;
+      if (val) {
+        this.initAddModel();
+      }
     },
   },
-  mounted() {
-    const data = {
-      projectId: this.projectId,
-    };
-    // 建筑查询条件
-    buildiFloor(data).then((res) => {
-      this.buildFloorList = this.mapList(res.content);
-    });
-    // 设备类型查询条件
-    readCategory(data).then((res) => {
-      this.categoryList = this.mapList(
-        res.content,
-        [],
-        ["code", "name", "children"]
-      );
-    });
-    const domLeft = document.getElementById("left");
-    if (domLeft) {
-      this.tableHeight = domLeft.offsetHeight - 140;
-    }
-
-    // 调取设备接口
-    // this.queryEquip()
-  },
 };
 </script>
 <style lang="less" scoped>