Przeglądaj źródła

动参设备待关联实例查询接口替换

haojianlong 5 lat temu
rodzic
commit
048a0dcde7

+ 33 - 26
src/views/point/dynamicdata/addRelation/equipRela/index.vue

@@ -155,12 +155,13 @@ import dataSource from "@/components/point/dynamicdata/dataSource";
 import locationFlag from "@/components/point/dynamicdata/locationFlag";
 import { mapGetters, mapActions } from "vuex";
 import {
-  dynamicPendingobjs,
+  // dynamicPendingobjs,
   dynamicPendingPoint,
   dynamicCreateRelation,
   dynamicDeleteRelation,
   dynamicPointTypeList,
-  dynamicQueryAI
+  dynamicQueryAI,
+  queryEquip, //数据中心设备查询
 } from "@/api/scan/request";
 export default {
   components: {
@@ -389,43 +390,49 @@ export default {
     },
     //获取待关联实例-右侧
     getRightData() {
-      let param = {
+      let pa = {
         PageNumber: this.rPage.pageNumber,
         PageSize: this.rPage.pageSize,
-        TypeNameList: [this.typeName]
+        Filters: 'not EquipID isNull',
+        Cascade: [{ Name: "zoneSpaceInBase" }, { Name: 'building' }, { Name: 'floor' }, { Name: 'equipCategory' }]
       };
       //处理查询条件
       if (this.form.ObjectLocalName && this.form.ObjectLocalName.length) {
-        param.ObjectLocalName = this.form.ObjectLocalName;
-      }
-      if (this.form.SubTypeName.length) {
-        param.SubTypeNameList = this.form.SubTypeName;
+        param.Filters += `;EquipLocalName contain "${this.form.ObjectLocalName}"`;
       }
+      //TODO
+      // if (this.form.SubTypeName.length) {
+      //   pa.SubTypeNameList = this.form.SubTypeName;
+      // }
       if (this.form.locationVal.length > 0) {
-        param.BuildLocalName = this.form.locationVal[0];
+        pa.Filters += `;BuildingId='${this.form.locationVal[0]}'`;
       }
       if (this.form.locationVal.length > 1) {
-        param.FloorLocalName = this.form.locationVal[1];
-      }
-      if (this.form.locationVal.length > 2) {
-        param.SpaceType = this.form.locationVal[2];
-      }
-      if (this.form.locationVal.length > 3) {
-        param.RoomLocalName = this.form.locationVal[3];
-      }
-      if (!this.form.locationVal.length) {
-        delete param.BuildLocalName
-        delete param.FloorLocalName
-        delete param.SpaceType
-        delete param.RoomLocalName
+        pa.Filters += `;FloorId='${this.form.locationVal[1]}'`;
       }
       this.rTableLoading = true;
-      dynamicPendingobjs(param, res => {
-        this.rPage.total = res.PageSize < 50 ? res.PageSize : res.Total;
+      queryEquip(pa, res => {
+        this.rPage.total = res.Total;
+        let tempArr = res.Content.map(t => {
+          t.ObjectID = t.EquipID.substr(14);
+          t.ObjectLocalName = t.EquipLocalName;
+          t.ObjectLocalCode = t.EquipLocalID;
+          t.SubTypeName = t.EquipCategory ? t.EquipCategory.EquipName : '';
+          t.BuildLocalName = t.Building ? t.Building.BuildLocalName : '';
+          t.FloorLocalName = t.Floor ? t.Floor.FloorLocalName : '';
+          t.RoomLocalName = '';
+          if (t.ZoneSpaceBaseIn) {
+            t.ZoneSpaceBaseIn.forEach(item => {
+              t.RoomLocalName += item.RoomLocalName + ',';
+            })
+            t.RoomLocalName = t.RoomLocalName.substring(0, t.RoomLocalName.length - 1);
+          }
+          return t;
+        });
         if (this.rPage.pageNumber == 1) {
-          this.RtableData = res.Content;
+          this.RtableData = tempArr;
         } else {
-          this.RtableData = this.RtableData.concat(res.Content);
+          this.RtableData = this.RtableData.concat(tempArr);
         }
         this.rTableLoading = false;
       });

+ 5 - 4
src/views/point/dynamicdata/addRelation/spaceRela/index.vue

@@ -394,13 +394,14 @@ export default {
       let pa = {
         PageNumber: this.rPage.pageNumber,
         PageSize: this.rPage.pageSize,
-        Cascade: [{ Name: 'building' }, { Name: 'floor' }, { Name: 'objectType' }],
+        Cascade: [{ Name: 'building' }, { Name: 'floor' }, { Name: 'zoneName' }],
         Filters: 'not RoomID isNull'
       };
       //处理查询条件
       if (this.form.ObjectLocalName && this.form.ObjectLocalName.length) {
         pa.Filters += `;RoomLocalName contain "${this.form.ObjectLocalName}"`;
       }
+      //TODO
       // if (this.form.SubTypeName.length) {
       //   param.SubTypeNameList = this.form.SubTypeName;
       // }
@@ -417,9 +418,9 @@ export default {
           t.ObjectID = t.RoomID.substr(12);
           t.ObjectLocalName = t.RoomLocalName;
           t.ObjectLocalCode = t.RoomLocalID;
-          t.BuildLocalName = t.Building.BuildLocalName;
-          t.FloorLocalName = t.Floor.FloorLocalName;
-          t.SubTypeName = t.ObjectType;
+          t.BuildLocalName = t.Building ? t.Building.BuildLocalName : '';
+          t.FloorLocalName = t.Floor ? t.Floor.FloorLocalName : '';
+          t.SubTypeName = t.DClassDef ? t.DClassDef.Name : '';
           return t;
         });
         if (this.rPage.pageNumber == 1) {