544 lines
8.7 KiB
544 lines
8.7 KiB
1 year ago
|
/** 节点信息 */
|
||
|
export const nodeInfoColumnList = [
|
||
|
{
|
||
|
prop: 'nodeName',
|
||
|
label: '节点名称',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '100',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'nowTransportCost',
|
||
|
label: '现付运输费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'oilCost',
|
||
|
label: '现付油卡费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'tollFee',
|
||
|
label: '路桥费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'backTransportCost',
|
||
|
label: '回付运输费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'reachTransportCost',
|
||
|
label: '到付运输费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'wholeCarInfoCost',
|
||
|
label: '整车信息费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'wholeCarInsuranceCost',
|
||
|
label: '整车保险费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'wholeCarGroundCost',
|
||
|
label: '整车落地费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'hairWholeCost',
|
||
|
label: '发站装车费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'hairWholeOtherCost',
|
||
|
label: '发站其它费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'unloadCost',
|
||
|
label: '到站卸车费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'unloadOtherCost',
|
||
|
label: '到站其它费',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
},
|
||
|
/* {
|
||
|
prop: 'orderCode',
|
||
|
label: '预计到达时间',
|
||
|
type: 6,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
head: false,
|
||
|
}, */
|
||
|
];
|
||
|
|
||
|
/** 运单池的表头 */
|
||
|
export const columnList = [
|
||
|
{
|
||
|
prop: '',
|
||
|
label: '复选框',
|
||
|
type: 0,
|
||
|
width: 55,
|
||
|
fixed: true,
|
||
|
},
|
||
|
{
|
||
|
prop: '',
|
||
|
label: '序号',
|
||
|
type: 12,
|
||
|
values: '',
|
||
|
width: 55,
|
||
|
fixed: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'createTime',
|
||
|
label: '开单日期',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'orderCode',
|
||
|
label: '订单自编号',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '150',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'waybillNo',
|
||
|
label: '运单号',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'destination',
|
||
|
label: '到站',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'destinationWarehouseName',
|
||
|
label: '目的站',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'shipper',
|
||
|
label: '发货单位',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'consignee',
|
||
|
label: '收货单位',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'consigneeName',
|
||
|
label: '收货人',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'productName',
|
||
|
label: '品类名称',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'totalNum',
|
||
|
label: '件数',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'stockNum',
|
||
|
label: '在库数',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '150',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'price',
|
||
|
label: '单价',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '150',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'totalWeight',
|
||
|
label: '重量(KG)',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'totalVolume',
|
||
|
label: '体积',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'freight',
|
||
|
label: '运费',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'customerTrain',
|
||
|
label: '客户车次',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'remark',
|
||
|
label: '运单备注',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
/** 调度池的表头 */
|
||
|
export const newColumnList = [
|
||
|
{
|
||
|
prop: '',
|
||
|
label: '复选框',
|
||
|
type: 0,
|
||
|
width: 55,
|
||
|
fixed: true,
|
||
|
},
|
||
|
{
|
||
|
prop: '',
|
||
|
label: '序号',
|
||
|
type: 12,
|
||
|
values: '',
|
||
|
width: 55,
|
||
|
fixed: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'createTime',
|
||
|
label: '开单日期',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
head: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'orderCode',
|
||
|
label: '订单自编号',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '150',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'waybillNo',
|
||
|
label: '运单号',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'destination',
|
||
|
label: '到站',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'destinationWarehouseName',
|
||
|
label: '目的站',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'shipper',
|
||
|
label: '发货单位',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
{
|
||
|
prop: 'consignee',
|
||
|
label: '收货单位',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'consigneeName',
|
||
|
label: '收货人',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'productName',
|
||
|
label: '品类名称',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'totalNum',
|
||
|
label: '件数',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'stockNum',
|
||
|
label: '在库数',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '150',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'price',
|
||
|
label: '单价',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '150',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'totalWeight',
|
||
|
label: '重量(KG)',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'totalVolume',
|
||
|
label: '体积',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'freight',
|
||
|
label: '运费',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
isshowSummary: true,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'customerTrain',
|
||
|
label: '客户车次',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
},
|
||
|
{
|
||
|
prop: 'remark',
|
||
|
label: '运单备注',
|
||
|
type: 1,
|
||
|
values: '',
|
||
|
width: '130',
|
||
|
checkarr: [],
|
||
|
fixed: false,
|
||
|
sortable: true,
|
||
|
isshowSummary: false,
|
||
|
},
|
||
|
];
|