58 lines
968 B
JavaScript
58 lines
968 B
JavaScript
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
|
|
},
|
|
{
|
|
label: '备注',
|
|
align: 'center',
|
|
prop: 'remark',
|
|
showOverflowTooltip: true
|
|
}
|
|
] |