-- 修改

This commit is contained in:
yuping
2022-12-04 02:35:38 +08:00
parent c2692a615c
commit 8af9e5e53f
7 changed files with 227 additions and 145 deletions

View File

@@ -31,6 +31,7 @@ export default createStore({
projectLevel: [],//项目级别
projectSys: [],//培训分类
pathmapPic: [],//学习路径背景图
memberInitInfo: [],//学员默认
},
getters: {},
mutations: {
@@ -55,6 +56,9 @@ export default createStore({
SET_DICT(state, {key, data}) {
state[key] = data
},
SET_MEMBER_INFO(state, data) {
state.memberInitInfo = data
},
SET_USER(state, userInfo) {
state.userInfo = userInfo
},