Quellcode durchsuchen

修改 两个分布图,跳转到的楼层平面图

yunxing vor 4 Jahren
Ursprung
Commit
baff411389

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

@@ -28,11 +28,11 @@ export default {
         }
     },
     created() {
-        console.log(this.$route.params)
-        this.title = this.$route.params.title
+        const { title, fbt, fbtArr } = this.$route.query
+        this.title = title
         // 分布图使用
-        this.fbt = this.$route.params.fbt || false
-        this.fbtArr = this.$route.params.fbtArr || []
+        this.fbt = fbt || false
+        this.fbtArr = fbtArr ? JSON.parse(fbtArr) : []
     },
     beforeMount() {},
     mounted() {},

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

@@ -501,7 +501,7 @@ export default {
             }
             const { categoryId, text } = item
             this.SETCATEGORYID(categoryId)
-            let params = { title: text }
+            let query = { title: text }
             this.fbtArr = [
                 {
                     // FloorId: "g80"
@@ -511,10 +511,10 @@ export default {
                 },
             ]
             if (this.fbtArr.length) {
-                params.fbtArr = this.fbtArr
-                params.fbt = true
+                query.fbtArr = JSON.stringify(this.fbtArr)
+                query.fbt = true
             }
-            this.$router.push({ name: 'SystemFloor', params })
+            this.$router.push({ name: 'SystemFloor', query })
         },
         /**
          * 跳转 电井间控制商铺范围