index.js 493 B

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