You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udiwms-vue-frame/src/utils/data.js

16 lines
385 B
JavaScript

export const mainActionMap = {
WareHouseIn: '入库',
WareHouseOut: '出库'
}
/**
* 库存对比状态
*/
export const stockCompareStatusEnum = {
DRAFT: {key: 'DRAFT', value: -1, desc: "草稿"},
EXECUTING: {key: 'EXECUTING', value: 1, desc: "对比中"},
FINISHED: {key: 'FINISHED', value: 3, desc: "对比完成"},
ERROR: {key: 'ERROR', value: 9, desc: "异常"},
}