index.js 558 B

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