|
|
@ -73,6 +73,10 @@ export const InspectionPlanMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '编码', |
|
|
|
field: 'code', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 220, |
|
|
|
fixed: 'left' |
|
|
|
}, |
|
|
|
form:{ |
|
|
|
componentProps:{ |
|
|
|
disabled:true, |
|
|
@ -84,18 +88,30 @@ export const InspectionPlanMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '物料编码', |
|
|
|
field: 'itemCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
} |
|
|
|
},{ |
|
|
|
label: '版本', |
|
|
|
field: 'version', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
} |
|
|
|
},{ |
|
|
|
label: '检验类型编码', |
|
|
|
field: 'testTypeCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
} |
|
|
|
},{ |
|
|
|
label: '检验模板编码', |
|
|
|
field: 'programmeTemplateCode', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
|
} |
|
|
|
},{ |
|
|
|
label: '拆分规则', |
|
|
|
field: 'splitRule', |
|
|
@ -128,11 +144,17 @@ export const InspectionPlanMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'effectiveDate', |
|
|
|
sort: 'custom', |
|
|
|
formatter: dateFormatter, |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
} |
|
|
|
},{ |
|
|
|
label: '失效时间', |
|
|
|
field: 'expirationDate', |
|
|
|
sort: 'custom', |
|
|
|
formatter: dateFormatter, |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
} |
|
|
|
},{ |
|
|
|
label: '是否可用', |
|
|
|
field: 'available', |
|
|
@ -155,10 +177,11 @@ export const InspectionPlanMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
{ |
|
|
|
label: '操作', |
|
|
|
field: 'action', |
|
|
|
isForm: false, |
|
|
|
isDetail: false, |
|
|
|
isForm: false , |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
fixed: 'right' |
|
|
|
} |
|
|
|
}, |
|
|
|
} |
|
|
|
])) |
|
|
|