工厂信息

This commit is contained in:
打豆豆
2023-12-15 15:03:15 +08:00
parent b039bc4a96
commit 88c52b9693
6 changed files with 407 additions and 50 deletions

View File

@@ -0,0 +1,19 @@
const state = {
companyImg:localStorage.getItem("logo"),
isLogo:false
}
const mutations = {
SET_LOGO(state,img){
state.companyImg = img
},
SET_IS_LOGO(state,isLogo) {
state.isLogo = isLogo;
}
}
export default {
namespaced: true,
state,
mutations,
}