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, itemStatus: { /** * 待周转 */ pendingTurnover: '4', /** * 周转中 */ turnoveing: '5', /** * 已送达 */ delivered: '6' , /** * 已领取 */ received: '7' } })