Ver código fonte

楼层id字段修改为引用gname字段

jxing 4 anos atrás
pai
commit
420b1cc185

+ 2 - 2
src/components/floorMap/floorList.vue

@@ -13,7 +13,7 @@
       <div class='floor-out' :style='{ height:conHeight + "px" }'>
         <!--  放开marginTop样式  -->
         <div class='floor-center' :style='{ marginTop : marginTop }'>
-          <div class='floor-item' :class='item.gcname == currentFloorId?"isActive":""' @click='tabFloor(item,index)'
+          <div class='floor-item' :class='item.gname == currentFloorId?"isActive":""' @click='tabFloor(item,index)'
             v-for='(item,index) in floorsArr' :key='index'>{{item.code}}</div>
         </div>
       </div>
@@ -130,7 +130,7 @@ export default {
      * @param {Number} index 楼层信息在floorsArr数组中的位置
      */
     tabFloor(item, index) {
-      this.currentFloorId = item.gcname;
+      this.currentFloorId = item.gname;
       this.$emit("emitFloor", item)
       this.handlePosition(2, index, this.floorsArr.length)
     },

+ 2 - 1
src/store/index.ts

@@ -12,7 +12,8 @@ export default new Vuex.Store({
         ssoToken: 'admin:maohongru',
         appTitle: '管理说明书', //顶部标题
         // ssoToken: null,
-        plazaId: '1000772', //项目Id 北京通州
+        // plazaId: '1000772', //项目Id 北京通州
+        plazaId: '1001146', //项目Id 北京槐房
         // plazaId: '1000423', //项目Id 大连高新
         fmapID: '',
         haveFengMap: -1, //是否有蜂鸟地图的数据 -1为等待 0 为失败 1 为成功

+ 1 - 1
src/views/FloorFunc.vue

@@ -127,7 +127,7 @@ export default {
         ProjectID: this.plazaId,
         Floors: this.floorsArr.map(item => {
           return {
-            FloorId: item.gcname,
+            FloorId: item.gname,
             FloorName: item.code
           }
         })

+ 4 - 4
src/views/equipmentFacilities/ElectricWell.vue

@@ -173,7 +173,7 @@ export default {
         handleRightClick() {
             this.showPopup = true
             // 设置选中的专业系统
-            this.changeFloor({ gcname: this.currentFloor })
+            this.changeFloor({ gname: this.currentFloor })
         },
         /**
          * 获取电井列表
@@ -225,7 +225,7 @@ export default {
             let { floorsArr } = this
             let currentFloor = floorsArr.filter((v) => v.code === chooseFloor)[0]
             let floor = {
-                FloorId: currentFloor.gcname,
+                FloorId: currentFloor.gname,
                 FloorName: currentFloor.code,
             }
             this.$router.push({ name: 'MapView', params: { floor } })
@@ -259,12 +259,12 @@ export default {
             let floorList = this.floorList
             floorList.map((item) => {
                 item.active = ''
-                if (item.gcname === data.gcname) {
+                if (item.gname === data.gname) {
                     item.active = 'active'
                 }
             })
             // 弹窗选中的系统
-            this.$set(this.modalDataBak, 'floor', data.gcname)
+            this.$set(this.modalDataBak, 'floor', data.gname)
         },
         changeWellType(data) {
             let { wellTypeList } = this

+ 3 - 3
src/views/equipmentFacilities/index.vue

@@ -278,7 +278,7 @@ export default {
                 ProjectID: this.plazaId,
                 Floors: this.floorsArr.map((item) => {
                     return {
-                        FloorId: item.gcname,
+                        FloorId: item.gname,
                         FloorName: item.code,
                     }
                 }),
@@ -297,7 +297,7 @@ export default {
             Data.map((item) => {
                 fbtArr.push({
                     code: item.FloorName,
-                    gcname: item.FloorId,
+                    gname: item.FloorId,
                 })
             })
             this.fbtArr = fbtArr
@@ -508,7 +508,7 @@ export default {
             // this.fbtArr = [
             //     {
             //         code: 'RF',
-            //         gcname: 'g80',
+            //         gname: 'g80',
             //     },
             // ]
             if (this.fbtArr.length) {

+ 1 - 1
src/views/legendList.vue

@@ -100,7 +100,7 @@ export default {
         ProjectID: this.plazaId,
         Floors: this.floorsArr.map(item => {
           return {
-            FloorId: item.gcname,
+            FloorId: item.gname,
             FloorName: item.code
           }
         })

+ 1 - 1
src/views/otherMatter/AuxiliaryRoom.vue

@@ -110,7 +110,7 @@ export default {
             seq: 500 */
             // 获取楼层
             this.imgKey = `img${new Date().getTime()}`
-            const floor = this.floorsArr.filter((i) => i.code === data.floor)[0].gcname
+            const floor = this.floorsArr.filter((i) => i.code === data.floor)[0].gname
             let getParams = {
                 module: '1004', //TODO: 固定1004?
                 floor: floor,

+ 4 - 4
src/views/overview/MapOther.vue

@@ -98,9 +98,9 @@ export default {
     emitFloor(floorObj) {
       if (floorObj) {
         this.$nextTick(() => {
-          this.floorid = floorObj.gcname;
+          this.floorid = floorObj.gname;
           this.floorName = floorObj.code;
-          this.init(floorObj.gcname);
+          this.init(floorObj.gname);
         })
       }
     },
@@ -484,10 +484,10 @@ export default {
           this.floorid = floor.FloorId;
           this.floorName = floor.FloorName;
           let index = this.floorsArr.findIndex(item => {
-            return item.gcname === floor.FloorId
+            return item.gname === floor.FloorId
           })
           let item = {
-            gcname: floor.FloorId,
+            gname: floor.FloorId,
             code: floor.FloorName
           }
           this.$refs.fList.tabFloor(item ,index);

+ 4 - 4
src/views/overview/MapView.vue

@@ -97,9 +97,9 @@ export default {
     emitFloor(floorObj) {
       if (floorObj) {
         this.$nextTick(() => {
-          this.floorid = floorObj.gcname;
+          this.floorid = floorObj.gname;
           this.floorName = floorObj.code;
-          this.init(floorObj.gcname);
+          this.init(floorObj.gname);
         })
       }
     },
@@ -480,10 +480,10 @@ export default {
           this.floorid = floor.FloorId;
           this.floorName = floor.FloorName;
           let index = this.floorsArr.findIndex(item => {
-            return item.gcname === floor.FloorId
+            return item.gname === floor.FloorId
           })
           let item = {
-            gcname: floor.FloorId,
+            gname: floor.FloorId,
             code: floor.FloorName
           }
           this.$refs.fList.tabFloor(item ,index);