order.js 240 B

123456789101112131415
  1. export const state = {
  2. typeIndex:0,
  3. stageIndex:0,
  4. };
  5. export const mutations = {
  6. setOrderType(state, data){
  7. state.typeIndex = data;
  8. },
  9. setOrderStage(state,data){
  10. state.stageIndex = data;
  11. }
  12. };
  13. export const actions = {
  14. };