You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
789 B
TypeScript
40 lines
789 B
TypeScript
/**
|
|
* 看单交接明细表格列
|
|
*/
|
|
import vm from '@/main';
|
|
export const headers = [
|
|
{
|
|
label: vm.$t('message.Delivery'),
|
|
key: 'proMoveCode', //单号
|
|
width: 250,
|
|
},
|
|
{
|
|
label: vm.$t('message.ModelCode'),
|
|
key: 'materialCode', //型号编码
|
|
width: 220,
|
|
},
|
|
{
|
|
label: vm.$t('message.ModelName'),
|
|
key: 'materialDesc', //型号名称
|
|
width: 430,
|
|
},
|
|
{
|
|
label: vm.$t('message.product_barCode'),
|
|
key: 'barCode', //条码号
|
|
width: 260,
|
|
},
|
|
{
|
|
label: vm.$t('message.SourceLocation'),
|
|
key: 'wlFromCode', //源库位
|
|
},
|
|
{
|
|
label: vm.$t('message.Warehouse_TargetLocation'),
|
|
key: 'wlToCode', //目标库位
|
|
},
|
|
{
|
|
label: vm.$t('message.operatingTime'),
|
|
key: 'moveTime', //操作时间
|
|
width: 465,
|
|
},
|
|
];
|