Browse Source

修复备件维修问题

master
ljlong_2630 2 months ago
parent
commit
78ea1ccd90
  1. 6
      src/views/eam/item/itemApplyMain/itemApplyMain.data.ts
  2. 12
      src/views/eam/item/itemMaintenance/itemMaintenance.data.ts

6
src/views/eam/item/itemApplyMain/itemApplyMain.data.ts

@ -186,6 +186,9 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
isTableForm: true, isTableForm: true,
tableForm: {
disabled: true
}
}, },
{ {
label: '类型', label: '类型',
@ -213,6 +216,9 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([
width: 150 width: 150
}, },
isTableForm: true, isTableForm: true,
tableForm: {
disabled: true
}
}, },
{ {
label: '设备/模具编号', label: '设备/模具编号',

12
src/views/eam/item/itemMaintenance/itemMaintenance.data.ts

@ -22,6 +22,18 @@ export const ItemMaintenance = useCrudSchemas(reactive<CrudSchema[]>([
sort: 'custom', sort: 'custom',
isSearch: true, isSearch: true,
}, },
{
label: '备件名称',
field: 'itemName',
sort: 'custom',
isSearch: true,
},
{
label: '规格型号',
field: 'specifications',
sort: 'custom',
isSearch: true,
},
{ {
label: '数量', label: '数量',
field: 'qty', field: 'qty',

Loading…
Cancel
Save