33 lines
431 B
JavaScript
33 lines
431 B
JavaScript
|
|
import {
|
|
GUIDE_OTHER_NEED,
|
|
GUIDE_SELECT_NEED,
|
|
} from "../constance/constance.common";
|
|
|
|
/**
|
|
* 答卷
|
|
*/
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state: {
|
|
|
|
guideSelectNeed: true,
|
|
guideOtherNeed: true
|
|
},
|
|
|
|
getters: {},
|
|
|
|
mutations: {
|
|
|
|
[GUIDE_OTHER_NEED](state) {
|
|
state.guideOtherNeed = false;
|
|
},
|
|
[GUIDE_SELECT_NEED](state) {
|
|
state.guideSelectNeed = false;
|
|
},
|
|
},
|
|
|
|
actions: {},
|
|
} |