From c5cd85cb47e2c5853844dbf851b92ef3289eaf50 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Fri, 25 Oct 2024 23:36:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/option/distribution/abnormalList.js | 30 ++++---- src/option/finance/WaybillAudit.js | 10 +++ src/option/waybill/WaybillOrderList.js | 10 +++ .../distribution/artery/AddVehicleStowage.vue | 6 +- .../distribution/artery/abnormalList.vue | 77 ++++++++++++++----- src/views/finance/CustomerSettlement.vue | 6 +- src/views/waybill/TemporaryStorageList.vue | 4 +- src/views/waybill/WaybillOrderList.vue | 52 +++++++++++++ 8 files changed, 156 insertions(+), 39 deletions(-) diff --git a/src/option/distribution/abnormalList.js b/src/option/distribution/abnormalList.js index bd557152..0fa27015 100644 --- a/src/option/distribution/abnormalList.js +++ b/src/option/distribution/abnormalList.js @@ -29,6 +29,19 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'abnormalStatusName', + label: '异常状态', + type: 14, + values: '', + width: '130', + checkarr: [ + { value: 0, label: '待处理' }, + { value: 1, label: '完结' }, + ], + fixed: false, + sortable: true, + }, { prop: 'abnormalTypeName', label: '异常类型', @@ -114,11 +127,11 @@ export const columnList = [ checkarr: [ { label: '是', - value: '1', + value: 1, }, { label: '否', - value: '0', + value: 0, }, ], fixed: false, @@ -146,19 +159,6 @@ export const columnList = [ fixed: false, sortable: true, }, - { - prop: 'abnormalStatusName', - label: '异常状态', - type: 14, - values: '', - width: '130', - checkarr: [ - { value: 0, label: '待处理' }, - { value: 1, label: '完结' }, - ], - fixed: false, - sortable: true, - }, { prop: 'upTime', label: '上报时间', diff --git a/src/option/finance/WaybillAudit.js b/src/option/finance/WaybillAudit.js index 8a0ae86e..4da52239 100644 --- a/src/option/finance/WaybillAudit.js +++ b/src/option/finance/WaybillAudit.js @@ -58,6 +58,16 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'consigneeCode', + label: '收货单位编码', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'consignee', label: '收货单位', diff --git a/src/option/waybill/WaybillOrderList.js b/src/option/waybill/WaybillOrderList.js index 2efc1418..6a1c2563 100644 --- a/src/option/waybill/WaybillOrderList.js +++ b/src/option/waybill/WaybillOrderList.js @@ -138,6 +138,16 @@ export const columnList = [ fixed: false, sortable: true, }, + { + prop: 'consigneeCode', + label: '收货单位编码', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'consignee', label: '收货单位', diff --git a/src/views/distribution/artery/AddVehicleStowage.vue b/src/views/distribution/artery/AddVehicleStowage.vue index dfcd21f1..01e4602b 100644 --- a/src/views/distribution/artery/AddVehicleStowage.vue +++ b/src/views/distribution/artery/AddVehicleStowage.vue @@ -799,7 +799,7 @@ export default {