|
@@ -31,11 +31,27 @@ export default {
|
|
],
|
|
],
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapGetters(['smsxt', 'categoryId']),
|
|
|
|
+ },
|
|
created() {
|
|
created() {
|
|
// 初始化 categoryId,smsxt
|
|
// 初始化 categoryId,smsxt
|
|
this.SETCATEGORYID('GDXT')
|
|
this.SETCATEGORYID('GDXT')
|
|
this.SETSMSXT('1001')
|
|
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() {},
|
|
beforeMount() {},
|
|
mounted() {},
|
|
mounted() {},
|
|
methods: {
|
|
methods: {
|