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
360 B
TypeScript
22 lines
360 B
TypeScript
/**
|
|
* 拣配查询表格列
|
|
*/
|
|
import vm from '@/main';
|
|
export const headers = [
|
|
{
|
|
label: vm.$t('message.product_barCode'),
|
|
key: 'barcode',
|
|
width: 320,
|
|
},
|
|
{
|
|
label: vm.$t('message.product_FGCode'),
|
|
key: 'productCode',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.product_Location'),
|
|
key: 'locCode',
|
|
width: 300,
|
|
},
|
|
];
|