order.js 245 B

12345678910111213141516
  1. export const state = {
  2. licenseNo: null,
  3. stageIndex: null,
  4. };
  5. export const mutations = {
  6. activelicenseNo(state, data) {
  7. state.licenseNo = data;
  8. },
  9. setOrderStage(state, data) {
  10. state.stageIndex = data;
  11. },
  12. };
  13. export const actions = {
  14. };