fix(index): 修复首页在已登录状态下,不能点击的问题

This commit is contained in:
2025-12-20 16:52:29 +08:00
parent 3556691b56
commit 973c8dddd0
7 changed files with 48 additions and 9 deletions

View File

@@ -98,6 +98,11 @@
if (uni.getStorageSync('servicerConfig')) {
this.$store.commit('setServicerConfig', uni.getStorageSync('servicerConfig'));
}
// 企业微信配置
if (uni.getStorageSync('wxworkConfig')) {
this.$store.commit('setWxworkConfig', uni.getStorageSync('wxworkConfig'));
}
// 版权信息
if (uni.getStorageSync('copyright')) {
@@ -296,7 +301,7 @@
this.shareConfig();
}
},
// 代表在wacth里声明了firstName这个方法之后立即先去执行handler方法
// 代表在watch里声明了firstName这个方法之后立即先去执行handler方法
immediate: true
}
}