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.
38 lines
595 B
TypeScript
38 lines
595 B
TypeScript
/**
|
|
* 扫描明细表格列
|
|
*/
|
|
import vm from '@/main';
|
|
export const headers = [
|
|
{
|
|
label: vm.$t('message.product_BarCode'),
|
|
key: 'barcode',
|
|
width: 400,
|
|
},
|
|
{
|
|
label: vm.$t('message.pcNo'),
|
|
key: 'pcNo',
|
|
width: 400,
|
|
},
|
|
{
|
|
label: vm.$t('message.po_MaterielNo'),
|
|
key: 'matCode',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.po_MaterielDes'),
|
|
key: 'matDesc',
|
|
width: 400,
|
|
},
|
|
{
|
|
label: vm.$t('message.stoOrderNo'),
|
|
key: 'stoNo',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.stoLine'),
|
|
key: 'stoItem',
|
|
width: 300,
|
|
},
|
|
];
|
|
|