فهرست منبع

解决添加设备相关bug

YaolongHan 4 سال پیش
والد
کامیت
4800a7a105
2فایلهای تغییر یافته به همراه109 افزوده شده و 38 حذف شده
  1. 101 34
      src/components/editview/leftToolBar/addItemModel.vue
  2. 8 4
      vue.config.js

+ 101 - 34
src/components/editview/leftToolBar/addItemModel.vue

@@ -53,7 +53,8 @@
               tooltip-effect="dark"
               style="width: 100%"
               :height="tableHeight"
-              @selection-change="handleSelectionChange"
+              @select="handleSelectionChange"
+              @select-all="allHandleSelectionChange"
             >
               <el-table-column type="selection" width="55"> </el-table-column>
               <el-table-column type="localName" label="本地名称" width="300">
@@ -95,6 +96,7 @@
           </div>
           <Pagination
             class="page-box"
+            :page="currentPage"
             :pageCountShow="true"
             :pageCount="tableTotal"
             :pageSizeSetting="true"
@@ -105,7 +107,9 @@
           <div class="top">
             <div class="top-l">
               <span class="equip-title">已选实例</span>
-              <span class="equip-num">{{ choiceEquipList.length }}</span>
+              <span class="equip-num">{{
+                [...Object.values(choiceEquipList)].flat(2).length || 0
+              }}</span>
             </div>
             <div class="top-r" @click="clearChoiceEqipment">清空</div>
           </div>
@@ -164,6 +168,7 @@ import {
   queryLegend,
 } from "@/api/editer";
 import bus from "@/bus/bus";
+import { Alert } from "element-ui";
 export default {
   props: ["showAddItemModel"],
   computed: {
@@ -186,7 +191,7 @@ export default {
       buildFloorList: [], // 建筑查询数据
       categoryList: [], //设备类型
       tableHeight: 0, //table的高度
-      choiceEquipList: [], // 选中得设备数组//非树机构
+      choiceEquipList: {}, // 选中得设备数组//非树机构
       pageSize: 20,
       currentPage: 1,
       local: null, //table loading
@@ -199,7 +204,6 @@ export default {
     // 筛选设备
     changeEquip(list) {
       const classCode = []; // 设备类型
-      this.currentPage = 1;
       list.forEach((val) => {
         if (val.index == 3) {
           classCode.push(val.id);
@@ -209,8 +213,15 @@ export default {
       this.equipTypeString = classCode.length
         ? ";classCode in " + JSON.stringify(classCode)
         : "";
-      // 调用设备接口
-      this.queryEquip();
+           // 调用设备接口
+      if(this.currentPage == 1){
+           this.queryEquip();
+      }else{
+        this.currentPage = 1; //(促发切页请求)
+      }
+    },
+    clearChange(){
+      console.log('1123')
     },
     // 筛选楼层
     changeFloor(list) {
@@ -218,7 +229,6 @@ export default {
       let floorIdList = [];
       let isfloornull = "";
       let isbuildnull = "";
-      this.currentPage = 1;
       // 遍历获取对应得楼层id、建筑id
       list.forEach((val) => {
         if (val.index == 1) {
@@ -257,8 +267,13 @@ export default {
         : isfloornull
         ? ";" + isfloornull
         : "";
+
       // 调用设备接口
-      this.queryEquip();
+      if(this.currentPage == 1){
+           this.queryEquip();
+      }else{
+        this.currentPage = 1; //(促发切页请求)
+      }
     },
     // 搜索设备
     queryEquip() {
@@ -282,20 +297,36 @@ export default {
       queryEquip(data)
         .then((res) => {
           this.tableTotal = res.total;
+          this.currentPage = res.pageNumber;
           this.equiptable = res.content;
-          this.$loading.close(this.local);
+          // 请求成功后,对比数据勾选
+          this.$nextTick(() => {
+            this.queryComparison();
+            this.$loading.close(this.local);
+          });
         })
         .catch((error) => {
-          console.log("it is error!", error);
-          this.$loading.close(this.local);
+          this.$nextTick(() => {
+            this.$loading.close(this.local);
+          });
         });
     },
+    // 请求数据后对比勾选
+    queryComparison() {
+      Object.keys(this.choiceEquipList).forEach((id) => {
+        this.equiptable.forEach((obj, i) => {
+          if (obj.id == id) {
+            this.$refs.multipleTable.toggleRowSelection(obj);
+          }
+        });
+      });
+    },
     // 关闭弹窗
     modalClose() {
       this.isShowModel = false;
       this.$emit("closeModel");
       // 清空搜索框信息
-      this.queryText = ''
+      this.queryText = "";
     },
     // 确认/提交
     finish() {
@@ -325,8 +356,8 @@ export default {
       this.local2 = this.$loading({ type: "global" });
       queryLegend(data)
         .then((res) => {
+          const list = Object.values(this.choiceEquipList);
           if (res.content && res.content.length) {
-            let list = this.choiceEquipList;
             res.content.forEach((contentType) => {
               list.forEach((item) => {
                 if (item.classCode == contentType.category) {
@@ -335,10 +366,9 @@ export default {
                 }
               });
             });
-            this.choiceEquipList = list;
           }
           // // 将选中的设备类存到vuex中
-          bus.$emit("addEquipment", this.choiceEquipList);
+          bus.$emit("addEquipment", list);
           this.$loading.close(this.local2);
           this.modalClose();
         })
@@ -350,8 +380,12 @@ export default {
     },
     // 搜索回车
     pressEnter() {
-      this.currentPage = 1;
-      this.queryEquip();
+          // 调用设备接口
+      if(this.currentPage == 1){
+           this.queryEquip();
+      }else{
+        this.currentPage = 1; //(促发切页请求)
+      }
     },
     // /是否下拉折叠
     collapse(item) {
@@ -359,22 +393,23 @@ export default {
     },
     // 删除item
     deleteItem(items, key) {
+      // 删除item
       let deleteItem = items.children.splice(key, 1);
       items.number = items.children.length;
-      this.$refs.multipleTable.toggleRowSelection(deleteItem[0]);
-      let index = -1;
-      this.choiceEquipList.forEach((item, i) => {
-        if (item.id == deleteItem[0].id) {
-          index = i;
+      // 联动table
+      this.equiptable.forEach((obj, i) => {
+        if (obj.id == deleteItem[0].id) {
+          this.$refs.multipleTable.toggleRowSelection(obj);
         }
       });
-      if (index >= 0) {
-        this.choiceEquipList.splice(key, 1);
-      }
-      this.handleSelectionChange(this.choiceEquipList);
+
+      // 联动勾选总数
+      this.$delete(this.choiceEquipList, items.id);
     },
     clearChoiceEqipment() {
       this.$refs.multipleTable.clearSelection();
+      this.choiceEquipList = {};
+      this.equipData = [];
     },
     /**
      * 构建树list
@@ -418,18 +453,47 @@ export default {
       }
       return arr;
     },
-    // 选中table回调
-    handleSelectionChange(list) {
+    // 选中table回调(选中单个)
+    handleSelectionChange(list, obj) {
+      if (list.includes(obj)) {
+        // 如果为添加
+        this.choiceEquipList[obj.id] = obj;
+      } else {
+        // 此处为取消勾选
+        this.$delete(this.choiceEquipList, obj.id);
+      }
+      // 选完后整理右侧树
+      this.computedrightTree(Object.values(this.choiceEquipList));
+    },
+    allHandleSelectionChange(list) {
+      // 由于切分页会提前触发该函数
+      if (list.length) {
+        // 本页全选
+        this.equiptable.forEach((obj) => {
+          this.choiceEquipList[obj.id] = obj;
+        });
+      } else {
+        // 本页全部取消
+        this.equiptable.forEach((obj) => {
+          if (Object.keys(this.choiceEquipList).includes(obj.id)) {
+            this.$delete(this.choiceEquipList, obj.id);
+          }
+        });
+      }
+
+      // 选完后整理右侧树
+      this.computedrightTree(Object.values(this.choiceEquipList));
+    },
+    //整理右侧树
+    computedrightTree(list) {
       let arr = [];
-      // this.choiceEquipList = this.choiceEquipList.concat(...list);
-      this.choiceEquipList = list;
       list.forEach((item) => {
         if (arr.length) {
           let index = -1;
           arr.forEach((aItem) => {
             if (aItem.id == item.classCode) {
               index = 1;
-              aItem.children.push(_.cloneDeep(item));
+              aItem.children.push(item);
               aItem.number++;
             }
           });
@@ -437,7 +501,7 @@ export default {
             let obj = {
               id: item.classCode,
               title: item.codeName,
-              children: [_.cloneDeep(item)],
+              children: [item],
               number: 1,
               showChildren: true,
             };
@@ -451,7 +515,7 @@ export default {
             number: 1,
             showChildren: true,
           };
-          obj.children.push(_.cloneDeep(item));
+          obj.children.push(item);
           arr.push(obj);
         }
       });
@@ -461,10 +525,13 @@ export default {
     currentChangeHandle(pageMsg) {
       this.pageSize = pageMsg.newPageSize;
       this.currentPage = pageMsg.newPage;
+      // 清空所有选中状态
+      this.$refs.multipleTable.clearSelection();
       this.queryEquip();
     },
     //  局部加载
     localLoading() {
+      this.local = null;
       this.local = this.$loading({
         el: this.$refs.localDom,
         type: "local",
@@ -498,7 +565,7 @@ export default {
         }
       });
       // 清空选中的item;
-      this.choiceEquipList = [];
+      this.choiceEquipList = {};
       // 清空右侧二级树
       this.equipData = [];
     },

+ 8 - 4
vue.config.js

@@ -9,25 +9,29 @@ module.exports = {
         proxy: {
             '/labsl': {
                 // target: 'http://39.102.40.239:8080',
-                target: 'http://192.168.64.17:28888',
+                // target: 'http://192.168.64.17:28888',
+                target:'http://192.168.64.14:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/meiku': {
                 // target: 'http://39.102.40.239:8080',
-                target: 'http://192.168.64.17:28888',
+                target:'http://192.168.64.14:28888',
+                // target: 'http://192.168.64.17:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/datacenter': {
                 // target: 'http://39.102.40.239:8080',
-                target: 'http://192.168.64.17:28888',
+                target:'http://192.168.64.14:28888',
+                // target: 'http://192.168.64.17:28888',
                 changeOrigin: true,
                 secure: false,
             },
             '/equip-component': {
                 // target: 'http://39.102.40.239:8080',
-                target: 'http://192.168.64.17:28888',
+                // target: 'http://192.168.64.17:28888',
+                target:'http://192.168.64.14:28888',
                 changeOrigin: true,
                 secure: false,
             },