You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
595 B

4 years ago
/**
* 项目系统相关
* */
4 years ago
export default {
4 years ago
namespaced: true,
state: {
lastSystemId: 1,
4 years ago
lastRecordType: "practice"
4 years ago
},
mutations: {
SET_SYSTEM_ID: (state, systemId) => {
4 years ago
state.lastSystemId = systemId;
4 years ago
},
SET_RECORD: (state, type) => {
4 years ago
state.lastRecordType = type;
}
4 years ago
},
actions: {
4 years ago
setSystemId({ state, commit }, systemId) {
commit("SET_SYSTEM_ID", systemId);
4 years ago
},
4 years ago
setRecord({ state, commit }, type) {
commit("SET_RECORD", type);
}
4 years ago
}
4 years ago
};