index.js 534 B

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