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.
41 lines
862 B
TypeScript
41 lines
862 B
TypeScript
/*
|
|
* @Author: zhou lei
|
|
* @Date: 2021-11-11 11:09:57
|
|
* @LastEditTime: 2021-11-22 15:16:21
|
|
* @LastEditors: zhou lei
|
|
* @Description:
|
|
* @FilePath: /wms_haiwai_app/src/pages/raw/commission/goOut/config.ts
|
|
* 联系方式:910592680@qq.com 18669792120 科海达信息技术有限公司
|
|
*/
|
|
/**
|
|
* 看单明细表格列
|
|
*/
|
|
import vm from '@/main';
|
|
export const headers = [
|
|
{
|
|
label: vm.$t('message.CommissionedSingleNumber'),
|
|
key: 'poNo',
|
|
width: 200,
|
|
},
|
|
{
|
|
label: vm.$t('message.po_MaterielNo'),
|
|
key: 'materialCode',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedMaterielDesc'),
|
|
key: 'materialDesc',
|
|
width: 300,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedGoOutNumber'),
|
|
key: 'outAmount',
|
|
width: 200,
|
|
},
|
|
{
|
|
label: vm.$t('message.CommissionedLocation'),
|
|
key: 'wlCode',
|
|
width: 200,
|
|
}
|
|
];
|