2025-12-18 11:51:14 +08:00
|
|
|
export const defaultColumns = [
|
|
|
|
|
{
|
|
|
|
|
label: '卷号',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'currentCoilNo',
|
|
|
|
|
showOverflowTooltip: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '存储位置',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'actualWarehouseName',
|
|
|
|
|
width: '120',
|
|
|
|
|
showOverflowTooltip: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '物料',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'itemName',
|
|
|
|
|
width: '100'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '规格',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'specification',
|
|
|
|
|
width: '100'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '材质',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'material',
|
|
|
|
|
width: '100'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '厂家',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'manufacturer',
|
|
|
|
|
width: '100'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '重量(t)',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'netWeight',
|
|
|
|
|
width: '100'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '库区',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'warehouseName',
|
|
|
|
|
width: '120',
|
|
|
|
|
showOverflowTooltip: true
|
|
|
|
|
},
|
2026-02-03 10:42:45 +08:00
|
|
|
{
|
|
|
|
|
label: '备注',
|
|
|
|
|
align: 'center',
|
|
|
|
|
prop: 'remark',
|
|
|
|
|
showOverflowTooltip: true
|
|
|
|
|
}
|
2025-12-18 11:51:14 +08:00
|
|
|
]
|