123456789101112131415161718192021222324252627282930313233343536373839 |
- import {
- reactive
- } from 'vue'
- export const store = reactive({
- userInfo: null,
- planSubDetails: null,
- planDetails: null,
- dayworkInfo: null,
- userProcessInfo: null,
- tenantId: null,
- curDeptDetails: null,
- isPreProcess: false,
- furnaceNumberInfo: null,
- normalStatus: true,
- processInspection: null,
- outsourcedCode: null,
- takeStockDetails: null,
- isReviewer: false,
- isNotification: false,
- itemStatus: {
- /**
- * 待周转
- */
- pendingTurnover: '4',
- /**
- * 周转中
- */
- turnoveing: '5',
- /**
- * 已送达
- */
- delivered: '6',
- /**
- * 已领取
- */
- received: '7'
- }
- })
|