From bb4850a5c2015dcda3915f6b4f8b03059fac2f2d Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Wed, 20 Mar 2024 16:24:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A2=84=E7=BA=A6=E6=89=93?= =?UTF-8?q?=E5=8D=B0bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/option/distribution/abnormalList.js | 170 ++++++++ .../distribution/artery/abnormalList.vue | 394 ++++++++++++++++++ .../distributionDeliveryListedt.vue | 4 +- .../distribution/reservation/reservation.vue | 99 +++-- 4 files changed, 621 insertions(+), 46 deletions(-) create mode 100644 src/option/distribution/abnormalList.js create mode 100644 src/views/distribution/artery/abnormalList.vue diff --git a/src/option/distribution/abnormalList.js b/src/option/distribution/abnormalList.js new file mode 100644 index 00000000..260a6c75 --- /dev/null +++ b/src/option/distribution/abnormalList.js @@ -0,0 +1,170 @@ +/** 自提详情内表格 */ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'billladingCode', + label: '类型', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'orderPackageCode', + label: '异常状态', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'driverName', + label: '车类型', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'carNumber', + label: '上报仓库', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'carsNo', + label: '车次号', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'waybillNo', + label: '运单号', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'orderCode', + label: '订单自编号', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'orderPackageCode', + label: '包条码', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: '', + label: '上报人', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'trayCode', + label: '状态', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'firstPickName', + label: '处理人', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'secondPickName', + label: '处理时间', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'remark', + label: '备注', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'materialName', + label: '上报时间', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: true, + }, +]; diff --git a/src/views/distribution/artery/abnormalList.vue b/src/views/distribution/artery/abnormalList.vue new file mode 100644 index 00000000..922b4e82 --- /dev/null +++ b/src/views/distribution/artery/abnormalList.vue @@ -0,0 +1,394 @@ + + + + + diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index 01322f0f..791ed442 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -2112,7 +2112,7 @@ export default { { prop: 'signingStatusName', label: '签收状态', - type: 2, + type: 1, values: '', width: '150', checkarr: [], @@ -2199,7 +2199,7 @@ export default { { prop: 'pallet', label: '托盘码', - type: 2, + type: 1, values: '', width: '150', checkarr: [], diff --git a/src/views/distribution/reservation/reservation.vue b/src/views/distribution/reservation/reservation.vue index ba12965a..85cfbcc9 100644 --- a/src/views/distribution/reservation/reservation.vue +++ b/src/views/distribution/reservation/reservation.vue @@ -1,5 +1,5 @@