123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- export default [
- { type: 'selection', fixed: 'left', _noset_: true },
- {
- prop: 'outChildCode',
- label: '发货工单号',
- width: '160'
- },
- {
- prop: 'orderCode',
- label: '确认单编号',
- width: '160'
- },
- {
- prop: 'outCode',
- label: '确认单编号',
- width: '160'
- },
- {
- prop: 'companyNo',
- label: '业务公司编号',
- width: '160'
- },
- {
- prop: 'companyName',
- label: '业务公司编号',
- width: '160'
- },
- {
- prop: 'customer_code',
- label: '客户编号',
- width: '160'
- },
- {
- prop: 'customer_name',
- label: '客户名称',
- width: '160'
- },
- {
- prop: 'supplierNo',
- label: '供应商编号 ',
- width: '160'
- },
- {
- prop: 'supplierName',
- label: '供应商名称',
- width: '160'
- },
- {
- prop: 'supplierNo',
- label: '供应商编号 ',
- width: '160'
- },
- {
- prop: 'spuCode',
- label: '商品成本编码',
- width: '160'
- },
- {
- prop: 'skuCode',
- label: '商品上线编码',
- width: '160'
- },
- {
- prop: 'order_type',
- label: '商品类型',
- _slot_: 'order_type',
- width: '85'
- },
- {
- prop: 'order_source',
- label: '订单来源',
- _slot_: 'order_source',
- width: '85'
- },
- {
- prop: 'num',
- label: '总数量',
- width: '70'
- },
- {
- prop: 'status',
- label: '状态',
- _slot_: 'status',
- width: '120px'
- },
- // {
- // prop: 'send_status',
- // label: '分单状态',
- // _slot_: 'send_status',
- // width: '120px'
- // },
- {
- prop: 'wsm_code',
- label: '仓库编号',
- width: '160'
- },
- {
- prop: 'addtime',
- label: '下单时间',
- sortable: true,
- width: 150
- },
- {
- prop: 'apply_name',
- label: '申请人',
- width: '80'
- },
- {
- prop: '',
- width: 50,
- label: '操作',
- fixed: 'right',
- _noset_: true,
- _slot_: 'operation'
- }
- ]
- // page 是 string 页码
- // size 是 string 页码数
- // cgdNo 是 string 采购单编号
- // returnCode 是 string 退货单编号
- // good_type_code 是 string 商品属性
- // good_name 是 string 商品名称
- // status 是 string 状态
|