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.
22 lines
363 B
TypeScript
22 lines
363 B
TypeScript
4 years ago
|
/**
|
||
|
* 看单明细表格列
|
||
|
*/
|
||
|
import vm from '@/main';
|
||
|
export const headers = [
|
||
|
{
|
||
|
label: vm.$t('message.product_barCode'),
|
||
|
key: 'barcode',
|
||
|
width: 300,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.product_FGCode'),
|
||
|
key: 'materialCode',
|
||
|
width: 300,
|
||
|
},
|
||
|
{
|
||
|
label: vm.$t('message.product_FGDes'),
|
||
|
key: 'materialDesc',
|
||
|
width: 300,
|
||
|
},
|
||
|
];
|