瀏覽代碼

模型质量报告显示待补充设备数量

shaun-sheep 4 年之前
父節點
當前提交
c5e5cc7613
共有 2 個文件被更改,包括 11 次插入4 次删除
  1. 8 0
      config/index.js
  2. 3 4
      src/views/model/report/index.vue

+ 8 - 0
config/index.js

@@ -168,6 +168,14 @@ module.exports = {
     //         // 将主机标头的原点更改为目标URL
     //         changeOrigin: false
     //     },
+    // '/scanbuilding-2': {
+    //   // 目标 API 地址
+    //   target: 'http://mbi.sagacloud.cn:8080/',
+    //   // 如果要代理 websockets
+    //   ws: true,
+    //   // 将主机标头的原点更改为目标URL
+    //   changeOrigin: false
+    // },
     //     '/image-service': {
     //         // 目标 API 地址
     //         target: 'http://172.16.42.210:8080/',

+ 3 - 4
src/views/model/report/index.vue

@@ -313,13 +313,13 @@
       getToBeCount() {// 根据模型ID获取待删除数量和待补充数量
         let equipComDelList = [],
           toBeAdded = []
-        // this.equipComDelList = [];
+        this.equipComDelList = [];
         this.LostFloorName.forEach(item => {
           if (item.CurrentModelId) {
             equipComDelList.push({
               ModelId: item.CurrentModelId
             });
-            // this.equipComDelList.push(item.CurrentModelId)
+            this.equipComDelList.push(item.CurrentModelId)
           } else {
             item.flag = 'lost';
             item.FloorName = `${item.Note + item.FloorName}`
@@ -353,7 +353,6 @@
           this.toBeDelCount = 0;
           this.toBeSuppCount = 0;
           res.Content.forEach(item => {
-
             if (item.Count > 0) {
               this.toBeDelCount += 1;
             }
@@ -368,7 +367,7 @@
               this.toBeSuppCount += 1;
             }
             this.LostFloorName.forEach(it => {
-              if (item.ModelId === it.CurrentModelId) {
+              if (item.ModelId === it.Id) {
                 it.toBeSupplement = item.Count;
               }
             })