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.
368 lines
6.3 KiB
368 lines
6.3 KiB
export const columnList = [ |
|
{ |
|
prop: '', |
|
label: '复选框', |
|
type: 0, |
|
width: 55, |
|
fixed: true, |
|
}, |
|
{ |
|
prop: '', |
|
label: '序号', |
|
type: 12, |
|
values: '', |
|
width: 55, |
|
fixed: true, |
|
}, |
|
{ |
|
prop: 'carsNo', |
|
label: '车次号', |
|
type: 13, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: true, |
|
sortable: true, |
|
head: false, |
|
}, |
|
{ |
|
prop: 'carsLineName', |
|
label: '路线', |
|
type: 13, |
|
values: '', |
|
width: '200', |
|
checkarr: [], |
|
fixed: true, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'planLoadingNumber', |
|
label: '计划装车', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'realLoadingNumber', |
|
label: '装车件数', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'stockCarsNum', |
|
label: '在车件数', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'unloadNumber', |
|
label: '卸车件数', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'fullLoadRate', |
|
label: '满载率', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'isCustomerName', |
|
label: '是否直发商家', |
|
type: 6, |
|
values: '', |
|
width: '90', |
|
checkarr: [ |
|
{ label: '是', value: '1' }, |
|
{ label: '否', value: '2' }, |
|
], |
|
fixed: false, |
|
sortable: false, |
|
}, |
|
{ |
|
prop: 'loadStatusName', |
|
label: '车辆状态', |
|
type: 3, |
|
values: '', |
|
width: '90', |
|
checkarr: [ |
|
{ label: '未发车', value: 0 }, |
|
{ label: '已发车', value: 10 }, |
|
{ label: '网点到车', value: 20 }, |
|
{ label: '网点发车', value: 30 }, |
|
{ label: '终点到车', value: 40 }, |
|
{ label: '已卸车', value: 80 }, |
|
{ label: '已签收', value: 90 }, |
|
{ label: '部分签收', value: 91 }, |
|
{ label: '取消配载', value: 100 }, |
|
], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'driverName', |
|
label: '主驾司机', |
|
type: 2, |
|
values: '', |
|
width: '130', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'driverMobile', |
|
label: '主驾司机手机号', |
|
type: 1, |
|
values: '', |
|
width: '150', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'carNumber', |
|
label: '车牌号', |
|
type: 2, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'startWarehouseName', |
|
label: '起点仓库', |
|
type: 2, |
|
values: '', |
|
width: '130', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'endWarehouseNames', |
|
label: '终点仓库', |
|
type: 2, |
|
values: '', |
|
width: '130', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'arriveTime', |
|
label: '到车时间', |
|
type: 1, |
|
values: '', |
|
width: '130', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'startTime', |
|
label: '实际发车时间', |
|
type: 1, |
|
values: '', |
|
width: '130', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'countTransportCost', |
|
label: '总费用', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'nowTransportCost', |
|
label: '现付运输费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
isshowSummary: true, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'fuel', |
|
label: '油费', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'tollFee', |
|
label: '路桥费', |
|
type: 1, |
|
values: '', |
|
width: '90', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'backTransportCost', |
|
label: '回付运输费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'reachTransportCost', |
|
label: '到付运输费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'wholeCarInfoCost', |
|
label: '整车信息费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'wholeCarInsuranceCost', |
|
label: '整车保险费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'wholeCarGroundCost', |
|
label: '整车落地费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'hairWholeCost', |
|
label: '发站装车费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'hairWholeOtherCost', |
|
label: '发站其他费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'unloadCost', |
|
label: '到站卸车费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'unloadOtherCost', |
|
label: '到站其它费', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
isshowSummary: true, |
|
}, |
|
{ |
|
prop: 'operator', |
|
label: '经办人', |
|
type: 1, |
|
values: '', |
|
width: '100', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'createTime', |
|
label: '创建时间', |
|
type: 1, |
|
values: '', |
|
width: '130', |
|
checkarr: [], |
|
fixed: false, |
|
sortable: true, |
|
}, |
|
{ |
|
prop: 'createUserName', |
|
label: '操作', |
|
type: 6, |
|
values: '', |
|
width: '250', |
|
checkarr: [], |
|
fixed: 'right', |
|
sortable: false, |
|
}, |
|
];
|
|
|