chore: 企业微信客服组件完全独立

This commit is contained in:
2025-12-15 15:04:45 +08:00
parent 5e536afeae
commit 08583aa8aa
3 changed files with 70 additions and 45 deletions

View File

@@ -64,6 +64,7 @@ const store = new Vuex.Store({
cartPosition: null, // 购物车所在位置
componentRefresh: 0, // 组件刷新
servicerConfig: null, // 客服配置
wxworkConfig: null, // 企业微信配置
diySeckillInterval: 0,
diyGroupPositionObj: {},
diyGroupShowModule: '',
@@ -160,6 +161,11 @@ const store = new Vuex.Store({
state.servicerConfig = value;
uni.setStorageSync('servicerConfig', value);
},
// 企业微信配置
setWxworkConfig(state, value) {
state.wxworkConfig = value;
uni.setStorageSync('wxworkConfig', value);
},
setDiySeckillInterval(state, value) {
state.diySeckillInterval = value;
},
@@ -215,6 +221,11 @@ const store = new Vuex.Store({
this.commit('setSiteInfo', data.site_info);
this.commit('setServicerConfig', data.servicer);
// 企业微信配置
if (data.wxwork) {
this.commit('setWxworkConfig', data.wxwork);
}
this.commit('setCopyright', data.copyright);