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