Selaa lähdekoodia

Merge branch 'dev' of http://39.106.8.246:3003/yunxing/wanda-bm-guide-h5 into dev

zhangyu 4 vuotta sitten
vanhempi
commit
68f4e6406e
1 muutettua tiedostoa jossa 16 lisäystä ja 0 poistoa
  1. 16 0
      src/components/systemMenu.vue

+ 16 - 0
src/components/systemMenu.vue

@@ -31,11 +31,27 @@ export default {
             ],
         }
     },
+    computed: {
+        ...mapGetters(['smsxt', 'categoryId']),
+    },
     created() {
         // 初始化  categoryId,smsxt
         this.SETCATEGORYID('GDXT')
         this.SETSMSXT('1001')
     },
+    /**
+     * 页面激活时,更新 store categoryId,smsxt
+     * 更新 因 点击 供电系统,暖通系统 内部的分布图 修改的store categoryId,smsxt
+     */
+    activated() {
+        let currentSystem = this.systemData.filter((v) => v.active)[0]
+        let { categoryId, smsxt } = currentSystem
+        if (this.categoryId !== categoryId || this.smsxt !== smsxt) {
+            console.log('SETCATEGORYID,SETSMSXT')
+            this.SETCATEGORYID(categoryId)
+            this.SETSMSXT(smsxt)
+        }
+    },
     beforeMount() {},
     mounted() {},
     methods: {