Browse Source

动参楼层模块接口替换

haojianlong 5 years ago
parent
commit
12e363f53b

+ 49 - 23
src/components/point/dynamicdata/locationCascader.vue

@@ -3,7 +3,10 @@
     :props="props" clearable class="location"></el-cascader>
 </template>
 <script>
-import { dynamicLocationList } from "@/api/scan/request";
+import {
+  // dynamicLocationList,
+  buildingQuery, //数据中心查询建筑
+} from "@/api/scan/request";
 import { mapGetters, mapActions } from "vuex";
 export default {
   data() {
@@ -12,9 +15,9 @@ export default {
       value: [],
       timer: null,
       props: {
-        value: 'Name',
-        label: 'Name',
-        children: 'List'
+        value: 'BuildID',
+        label: 'BuildLocalName',
+        children: 'Floor'
       }
     };
   },
@@ -33,26 +36,49 @@ export default {
   },
   methods: {
     init() {
-      let param = { Related: this.Related, TypeName: this.typeName };
-      dynamicLocationList(param, res => {
-        this.LocationList = res.Content[0].List;
-        //添加未明确对象
-        this.LocationList = this.delNullItems(this.LocationList)
-        this.LocationList.map(item => {
-          if (this.isFloor) {
-            delete item.List;
-          }
-          if (item.List) {
-            item.List.map(child => {
-              if (child.List) {
-                child.List.unshift({ Name: '未明确业务空间' })
-              }
-            })
-            item.List.unshift({ Name: '未明确楼层' })
+      // let param = { Related: this.Related, TypeName: this.typeName };
+      // dynamicLocationList(param, res => {
+      //   this.LocationList = res.Content[0].List;
+      //   //添加未明确对象
+      //   this.LocationList = this.delNullItems(this.LocationList)
+      //   this.LocationList.map(item => {
+      //     if (this.isFloor) {
+      //       delete item.List;
+      //     }
+      //     if (item.List) {
+      //       item.List.map(child => {
+      //         if (child.List) {
+      //           child.List.unshift({ Name: '未明确业务空间' })
+      //         }
+      //       })
+      //       item.List.unshift({ Name: '未明确楼层' })
+      //     }
+      //   })
+      //   this.LocationList.unshift({ Name: '未明确建筑' })
+      // });
+      let pa = {}
+      if (!this.isFloor) {
+        pa.Cascade = [{ Name: 'floor' }]
+      }
+      buildingQuery(pa, res => {
+        this.LocationList = res.Content.map(item => {
+          if (!this.isFloor) {
+            if (item.Floor) {
+              item.Floor.map(t => {
+                t.BuildID = t.FloorID;
+                t.BuildLocalName = t.FloorLocalName;
+                t.Floor = [];
+                return t;
+              })
+              item.Floor.unshift({ BuildID: 'unknowFloor', BuildLocalName: '未明确楼层' })
+            } else {
+              item.Floor = [{ BuildID: 'unknowFloor', BuildLocalName: '未明确楼层' }];
+            }
           }
-        })
-        this.LocationList.unshift({ Name: '未明确建筑' })
-      });
+          return item;
+        });
+        this.LocationList.unshift({ BuildID: 'unknowBuild', BuildLocalName: '未明确建筑' })
+      })
     },
     delNullItems(arr) {
       let tempArr = JSON.parse(JSON.stringify(arr))

+ 28 - 34
src/views/point/dynamicdata/addRelation/floorRela/index.vue

@@ -106,10 +106,8 @@
               <el-table-column prop="ObjectLocalCode" :label="`${typeName}本地编码`" show-overflow-tooltip></el-table-column>
               <el-table-column :label="`${typeName}顺序号`" show-overflow-tooltip>
                 <template slot-scope="scope">
-                  <el-tooltip :content="(scope.row.ObjectSequenceID&&scope.row.ObjectSequenceID!='null')?scope.row.ObjectSequenceID:''"
-                    placement="top">
-                    <div class="tool-tip">
-                      {{(scope.row.ObjectSequenceID&&scope.row.ObjectSequenceID!='null')?scope.row.ObjectSequenceID:''}}</div>
+                  <el-tooltip :content="scope.row.ObjectSequenceID+''" placement="top">
+                    <div class="tool-tip">{{scope.row.ObjectSequenceID+''}}</div>
                   </el-tooltip>
                 </template>
               </el-table-column>
@@ -167,7 +165,8 @@ import {
   dynamicCreateRelation,
   dynamicDeleteRelation,
   dynamicPointTypeList,
-  dynamicQueryAI
+  dynamicQueryAI,
+  floorQuery, //数据中心查询楼层
 } from "@/api/scan/request";
 export default {
   components: {
@@ -396,46 +395,41 @@ export default {
     },
     //获取待关联实例-右侧
     getRightData() {
-      let param = {
+      let pa = {
+        Cascade: [{ Name: 'building' }],
         PageNumber: this.rPage.pageNumber,
         PageSize: this.rPage.pageSize,
-        TypeNameList: [this.typeName]
-      };
+        Filters: `not FloorID isNull`
+      }
       //处理查询条件
       if (this.form.ObjectLocalName && this.form.ObjectLocalName.length) {
-        param.ObjectLocalName = this.form.ObjectLocalName;
-      }
-      if (this.form.SubTypeName.length) {
-        param.SubTypeNameList = this.form.SubTypeName;
-      }
-      if (this.form.locationVal.length > 0) {
-        param.BuildLocalName = this.form.locationVal[0];
+        pa.Filters += `;FloorLocalName contain '${this.form.ObjectLocalName}'`;
       }
-      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
+      if (this.form.locationVal.length) {
+        if (this.form.locationVal[0] != 'unknowBuild') {
+          pa.Filters += `;BuildID='${this.form.locationVal[0]}'`;
+        } else {
+          pa.Filters += `;BuildID isNull`;
+        }
       }
       this.rTableLoading = true;
-      dynamicPendingobjs(param, res => {
-        this.rPage.total = res.PageSize < 50 ? res.PageSize : res.Total;
+      floorQuery(pa, res => {
+        this.rPage.total = res.Total;
+        let tempArr = res.Content.map(t => {
+          t.ObjectID = t.FloorID.substr(12);
+          t.ObjectLocalName = t.FloorLocalName;
+          t.ObjectLocalCode = t.FloorLocalID;
+          t.ObjectSequenceID = t.FloorSequenceID;
+          t.BuildLocalName = t.Building.BuildLocalName;
+          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;
-      });
+      })
     },
     //清除对应关系成功
     deleteSuc() {