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.
|
|
|
/**
|
|
|
|
* 项目、系统相关
|
|
|
|
* */
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state: {
|
|
|
|
lastSystemId: 1,
|
|
|
|
lastRecordType: "practice"
|
|
|
|
},
|
|
|
|
mutations: {
|
|
|
|
SET_SYSTEM_ID: (state, systemId) => {
|
|
|
|
state.lastSystemId = systemId;
|
|
|
|
},
|
|
|
|
SET_RECORD: (state, type) => {
|
|
|
|
state.lastRecordType = type;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
actions: {
|
|
|
|
setSystemId({ state, commit }, systemId) {
|
|
|
|
commit("SET_SYSTEM_ID", systemId);
|
|
|
|
},
|
|
|
|
setRecord({ state, commit }, type) {
|
|
|
|
commit("SET_RECORD", type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|