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.
190 lines
3.4 KiB
190 lines
3.4 KiB
export default { |
|
expand: false, |
|
index: true, |
|
border: true, |
|
selection: true, |
|
column: [ |
|
{ |
|
label: "主键", |
|
prop: "id", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "租户号", |
|
prop: "tenantId", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "创建人", |
|
prop: "createUser", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "创建时间", |
|
prop: "createTime", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "更新人", |
|
prop: "updateUser", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "更新时间", |
|
prop: "updateTime", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "状态", |
|
prop: "status", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "是否已删除", |
|
prop: "isDeleted", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "创建部门", |
|
prop: "createDept", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "预留1", |
|
prop: "reserve1", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "预留2", |
|
prop: "reserve2", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "预留3", |
|
prop: "reserve3", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "预留4", |
|
prop: "reserve4", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "预留5", |
|
prop: "reserve5", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "订单自编号;订单关联id", |
|
prop: "orderId", |
|
}, |
|
{ |
|
label: "预约关联Id;预约关联id", |
|
prop: "reservationId", |
|
display: false, |
|
hide: true, |
|
}, |
|
{ |
|
label: "收货人", |
|
prop: "consignee", |
|
}, |
|
{ |
|
label: "收货地址", |
|
prop: "deliveryAddress", |
|
}, |
|
{ |
|
label: "收货人手机号", |
|
prop: "consigneePhone", |
|
}, |
|
{ |
|
label: "服务类型", |
|
prop: "serveType", |
|
}, |
|
{ |
|
label: "配送仓库", |
|
prop: "distributingWarehouse", |
|
}, |
|
{ |
|
label: "配送车次", |
|
prop: "trainNumber", |
|
}, |
|
{ |
|
label: "订单总数", |
|
prop: "orderTotal", |
|
}, |
|
{ |
|
label: "总件数", |
|
prop: "total", |
|
}, |
|
{ |
|
label: "装车件数", |
|
prop: "loadedNumber", |
|
}, |
|
{ |
|
label: "签收数", |
|
prop: "receivedQuantity", |
|
}, |
|
{ |
|
label: "送货司机", |
|
prop: "deliveryDriver", |
|
}, |
|
{ |
|
label: "送货司机手机号", |
|
prop: "deliveryDriverPhone", |
|
}, |
|
{ |
|
label: "文员签收时间", |
|
prop: "signingTime", |
|
format: "YYYY-MM-DD HH:mm:ss", |
|
valueFormat: "YYYY-MM-DD HH:mm:ss", |
|
}, |
|
{ |
|
label: "司机签收时间", |
|
prop: "sjsigningTime", |
|
format: "YYYY-MM-DD HH:mm:ss", |
|
valueFormat: "YYYY-MM-DD HH:mm:ss", |
|
}, |
|
{ |
|
label: "签收人", |
|
prop: "signee", |
|
}, |
|
{ |
|
label: "签收状态;1-未签收,2-司机签收,3-文员签收", |
|
prop: "signingStatus", |
|
}, |
|
{ |
|
label: "签收类型;1-签收,2-代签收", |
|
prop: "signingType", |
|
}, |
|
// { |
|
// label: "文员复核图片", |
|
// prop: "clerkSignPictures", |
|
// }, |
|
// { |
|
// label: "司机签收图片", |
|
// prop: "deliverySignPictures", |
|
// }, |
|
{ |
|
label: "服务号", |
|
prop: "serviceNumber", |
|
}, |
|
{ |
|
label: "备注", |
|
prop: "notes", |
|
}, |
|
] |
|
}
|
|
|