存放课程分类id集合map

This commit is contained in:
NiSen
2023-10-11 18:42:08 +08:00
parent 4f5bd2cf16
commit 6b9b9bb8d6
3 changed files with 26 additions and 1 deletions

View File

@@ -26,7 +26,8 @@ export default createStore({
pathmapPic: [],//学习路径背景图
memberInitInfo: [],//学员默认
sysType: [],//学员默认
menus: []
menus: [],
sysTypeMap:null
},
getters: {},
mutations: {
@@ -51,6 +52,9 @@ export default createStore({
SET_DICT(state, { key, data }) {
state[key] = data;
},
SET_SYSTYPEMAP(state, map) {
state.sysTypeMap = map;
},
SET_MEMBER_INFO(state, data) {
state.memberInitInfo = data;
},