This commit is contained in:
liushiwei
2024-06-29 11:51:35 +08:00
parent 9253427bcc
commit 6356004d74
29 changed files with 3905 additions and 501 deletions

View File

@@ -13,6 +13,8 @@ export default new Vuex.Store({
mallName: '',
mallList: [],
activeDlgShow: false,
showSheinAlert: false,
showTemuAlert: false,
userInfo: {}
},
@@ -46,6 +48,12 @@ export default new Vuex.Store({
},
setActiveDlgShow(state, flag) {
state.activeDlgShow = flag
},
setSheinAlertShow(state, flag) {
state.showSheinAlert = flag
},
setTemuAlertShow(state, flag) {
state.showTemuAlert = flag
}
},