You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
509 lines
8.5 KiB
509 lines
8.5 KiB
export const columnList = [ |
|
{ |
|
prop: '', |
|
label: '复选框', |
|
type: 0, |
|
width: 55, |
|
fixed: true, |
|
}, |
|
{ |
|
prop: '', |
|
label: '序号', |
|
type: 12, |
|
values: '', |
|
width: 55, |
|
fixed: true, |
|
}, |
|
{ |
|
prop: 'businessLine', |
|
label: '事业线', |
|
type: 1, |
|
values: '', |
|
width: '180', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'departureWarehouseName', |
|
label: '始发仓', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'destinationWarehouseName', |
|
label: '目的仓', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'brand', |
|
label: '品牌', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'totalNum', |
|
label: '总件数', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: true, //开启统计 |
|
}, |
|
{ |
|
prop: 'openNum', |
|
label: '开单件数', |
|
type: 6, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: true, //开启统计 |
|
}, |
|
{ |
|
prop: 'startNum', |
|
label: '发运件数', |
|
type: 6, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: true, //开启统计 |
|
}, |
|
{ |
|
prop: 'noOutNum', |
|
label: '未发运件数', |
|
type: 6, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: true, //开启统计 |
|
}, |
|
{ |
|
prop: 'onTimeNum', |
|
label: '准时发运数', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: true, //开启统计 |
|
}, |
|
{ |
|
prop: 'noOutOverNum', |
|
label: '未发运超时件数', |
|
type: 6, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: true, //开启统计 |
|
}, |
|
{ |
|
prop: 'onTimeRate', |
|
label: '准时发运率', |
|
type: 6, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'avgTime', |
|
label: '平均发运时效(小时)', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'hoursTime', |
|
label: '标准时效(小时)', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
]; |
|
|
|
export const columnListDetails = [ |
|
{ |
|
prop: '', |
|
label: '复选框', |
|
type: 0, |
|
width: 55, |
|
fixed: true, |
|
}, |
|
{ |
|
prop: '', |
|
label: '序号', |
|
type: 12, |
|
values: '', |
|
width: 55, |
|
fixed: true, |
|
}, |
|
{ |
|
prop: 'waybillNo', |
|
label: '运单号', |
|
type: 2, |
|
values: '', |
|
width: '180', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'orderCode', |
|
label: '订单号', |
|
type: 2, |
|
values: '', |
|
width: '180', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'nowWarehouseName', |
|
label: '当前所在仓', |
|
type: 2, |
|
values: '', |
|
width: '180', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'departureWarehouseName', |
|
label: '始发仓', |
|
type: 2, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'destinationWarehouseName', |
|
label: '目的仓', |
|
type: 2, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'trainNumber', |
|
label: '客户车次号', |
|
type: 2, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'isGcpName', |
|
label: '干仓配', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [ |
|
{ label: '否', value: 0 }, |
|
{ label: '是', value: 1 }, |
|
], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'firstPackName', |
|
label: '一级品类', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'secondPackName', |
|
label: '二级品类', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'thirdPackName', |
|
label: '三级品类', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'materialCode', |
|
label: '物料编码', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'materialName', |
|
label: '物料名称', |
|
type: 1, |
|
values: '', |
|
width: '160', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'orderPackageCode', |
|
label: '包条码', |
|
type: 2, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'systemType', |
|
label: '订单来源', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'serviceNum', |
|
label: '服务号', |
|
type: 2, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'senderNum', |
|
label: '发货数量', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'volume', |
|
label: '体积', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'weight', |
|
label: '重量', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'deliveryDate', |
|
label: '基地发货日期', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'warehouseName', |
|
label: '导入仓库', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'incomgingTime', |
|
label: '入库时间', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'isStartingName', |
|
label: '是否发运', |
|
type: 3, |
|
values: '', |
|
width: '150', |
|
checkarr: [ |
|
{ label: '否', value: 0 }, |
|
{ label: '是', value: 1 }, |
|
], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'startTime', |
|
label: '发运时间', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'startHours', |
|
label: '实际发运时效(小时)', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'hoursTime', |
|
label: '标准发运时效(小时)', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'createUserName', |
|
label: '订单创建人', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
{ |
|
prop: 'createTime', |
|
label: '订单创建时间', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'isOverTimeName', |
|
label: '是否超时', |
|
type: 3, |
|
values: '', |
|
width: '150', |
|
checkarr: [ |
|
{ label: '否', value: 0 }, |
|
{ label: '是', value: 1 }, |
|
], |
|
fixed: false, |
|
sortable: true, |
|
head: false, |
|
isshowSummary: false, //开启统计 |
|
}, |
|
];
|
|
|