|
@ -30,8 +30,12 @@ export const ContainerMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '状态', |
|
|
label: '器具状态', |
|
|
field: 'status', |
|
|
field: 'containerStatus', |
|
|
|
|
|
dictType: DICT_TYPE.CONTAINER_STATUS, |
|
|
|
|
|
dictClass: 'string', |
|
|
|
|
|
isTable: true, |
|
|
|
|
|
isForm: true, |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
|
}, |
|
|
}, |
|
@ -140,4 +144,4 @@ export const ContainerDetailRules = reactive({ |
|
|
containerContentType: [ |
|
|
containerContentType: [ |
|
|
{ required: true, message: '请选择内容物类型', trigger: 'change' } |
|
|
{ required: true, message: '请选择内容物类型', trigger: 'change' } |
|
|
], |
|
|
], |
|
|
}) |
|
|
}) |
|
|