| 12345678910111213141516 |
- export const state = {
- licenseNo: null,
- stageIndex: null,
- };
- export const mutations = {
- activelicenseNo(state, data) {
- state.licenseNo = data;
- },
- setOrderStage(state, data) {
- state.stageIndex = data;
- },
- };
- export const actions = {
- };
|