index.js 602 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. outsourcedCode: null,
  17. takeStockDetails: null,
  18. isReviewer: false,
  19. isNotification: false,
  20. itemStatus: {
  21. /**
  22. * 待周转
  23. */
  24. pendingTurnover: '4',
  25. /**
  26. * 周转中
  27. */
  28. turnoveing: '5',
  29. /**
  30. * 已送达
  31. */
  32. delivered: '6',
  33. /**
  34. * 已领取
  35. */
  36. received: '7'
  37. }
  38. })