store.ts 340 B

12345678910111213141516171819
  1. import { reactive } from 'vue'
  2. const initialState = {
  3. step: 0,
  4. repairId: '',
  5. shop: null as any,
  6. periods: [] as any[],
  7. uiDate: '',
  8. uiPeriod: '',
  9. date: '',
  10. period: '',
  11. phoneNumber: '',
  12. remark: '',
  13. }
  14. export const state = reactive({ ...initialState })
  15. export function resetState() {
  16. Object.assign(state, initialState)
  17. }