export const state = { typeIndex:0, stageIndex:0, }; export const mutations = { setOrderType(state, data){ state.typeIndex = data; }, setOrderStage(state,data){ state.stageIndex = data; } }; export const actions = { };