You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const EnumList = {
|
|
|
|
// 是否
|
|
|
|
whether:[
|
|
|
|
{label:'是',value:1,type:'success'},
|
|
|
|
{label:'否',value:0,type:'danger'}
|
|
|
|
],
|
|
|
|
// 退货类型
|
|
|
|
returnType:[
|
|
|
|
{label:'合格品',value:1},
|
|
|
|
{label:'不合格品',value:0}
|
|
|
|
],
|
|
|
|
// 物料类型
|
|
|
|
materialType:[
|
|
|
|
{label:'成品',value:'成品'},
|
|
|
|
{label:'半成品',value:'半成品'},
|
|
|
|
{label:'原材料',value:'原材料'},
|
|
|
|
],
|
|
|
|
// 库存状态
|
|
|
|
inventoryStatus:[
|
|
|
|
{label:'生产件',value:'生产件'},
|
|
|
|
{label:'呆滞件',value:'呆滞件'},
|
|
|
|
{label:'备件',value:'备件'},
|
|
|
|
{label:'KD件',value:'KD件'},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
export default EnumList
|