|
|
@ -26,34 +26,26 @@ export const Supplier = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'userName', |
|
|
|
sort: 'custom', |
|
|
|
isSearch:true, |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '用户昵称', |
|
|
|
field: 'nickName', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '供应商代码', |
|
|
|
field: 'supplierCode', |
|
|
|
isSearch:true, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '供应商名称', |
|
|
|
field: 'supplierName', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '创建时间', |
|
|
@ -63,9 +55,7 @@ export const Supplier = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
|
|
|
|
} |
|
|
|
])) |
|
|
|
export const Version = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
@ -74,43 +64,28 @@ export const Version = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'supplerCodes', |
|
|
|
sort: 'custom', |
|
|
|
isSearch:true, |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '订单号', |
|
|
|
field: 'poNumber', |
|
|
|
sort: 'custom', |
|
|
|
isSearch:true, |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '订单行', |
|
|
|
field: 'poLine', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '物料代码', |
|
|
|
field: 'itemCode', |
|
|
|
isSearch:true, |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '子表版本', |
|
|
|
field: 'detailVersion', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150, |
|
|
|
} |
|
|
|
} |
|
|
|
])) |
|
|
|
export const DemandforecastingMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|