index.js 511 B

123456789101112131415161718192021222324252627282930313233343536
  1. import {
  2. reactive
  3. } from 'vue'
  4. export const store = reactive({
  5. userInfo: null,
  6. planSubDetails: null,
  7. planDetails: null,
  8. dayworkInfo: null,
  9. userProcessInfo: null,
  10. tenantId: null,
  11. curDeptDetails: null,
  12. isPreProcess: false,
  13. furnaceNumberInfo: null,
  14. normalStatus: true,
  15. processInspection: null,
  16. itemStatus: {
  17. /**
  18. * 待周转
  19. */
  20. pendingTurnover: '4',
  21. /**
  22. * 周转中
  23. */
  24. turnoveing: '5',
  25. /**
  26. * 已送达
  27. */
  28. delivered: '6',
  29. /**
  30. * 已领取
  31. */
  32. received: '7'
  33. }
  34. })