|
|
@ -37,7 +37,8 @@ export const CallmaterialsRules = reactive({ |
|
|
|
workshopCode: [required], |
|
|
|
workStationCode: [required], |
|
|
|
uom: [required], |
|
|
|
callmaterialQty: [required] |
|
|
|
callmaterialQty: [required], |
|
|
|
project: [{ max: 50, message: '最多50字符', trigger: 'blur'}] |
|
|
|
}) |
|
|
|
|
|
|
|
export const Callmaterials = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
@ -358,6 +359,13 @@ export const Callmaterials = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
table: { |
|
|
|
width: 100 |
|
|
|
} , |
|
|
|
form: { |
|
|
|
componentProps:{ |
|
|
|
maxlength: 50, |
|
|
|
type:'textarea', |
|
|
|
showWordLimit:true |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '库位', |
|
|
|