From 4b0ea6dd184c0010202eacc8dd68fe4cc69ccd0e Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Fri, 10 May 2024 16:25:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=85=8D=E9=80=81bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../deliverylist/distributionDeliveryList.vue | 88 ++++++++- .../distributionDeliveryListdis.vue | 175 +++++++++++------- .../distributionDeliveryListmar.vue | 78 +++++++- 3 files changed, 260 insertions(+), 81 deletions(-) diff --git a/src/views/distribution/deliverylist/distributionDeliveryList.vue b/src/views/distribution/deliverylist/distributionDeliveryList.vue index 04a42bfb..0ecccf79 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryList.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryList.vue @@ -5,32 +5,42 @@ - + - + 商配 市配 - + 自主配送 外协配送 { + const end = new Date(); + const start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); + return [start, end]; + }, + }, + { + text: '最近一个月', + value: () => { + const end = new Date(); + const start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); + return [start, end]; + }, + }, + { + text: '最近三个月', + value: () => { + const end = new Date(); + const start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); + return [start, end]; + }, + }, + ], columnList: [ { prop: '', @@ -411,6 +452,16 @@ export default { fixed: false, sortable: true, }, + { + prop: 'orderCode', + label: '订单自编号', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'typeName', label: '配送类型', @@ -471,6 +522,17 @@ export default { // fixed: false, // sortable: true // }, + // clineName + { + prop: 'clineName', + label: '收货人', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'customersNumber', label: '配送客户数', @@ -1109,6 +1171,12 @@ export default { }, onLoad(page, params = {}) { this.loading = true; + + if (getObjType(this.query.taskTimeArr) === 'array') { + params.taskTimeStart = this.query.taskTimeArr[0]; + params.taskTimeEnd = this.query.taskTimeArr[1]; + } + getPage(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { const data = res.data.data; // eslint-disable-next-line no-empty @@ -1254,4 +1322,8 @@ export default { display: flex; align-items: flex-end; } + +.w100 { + width: 100% !important; +} diff --git a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue index f9d95243..033df22b 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListdis.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListdis.vue @@ -1,83 +1,84 @@