From c8a1a2c6fba8983fd33a7edf9d83f847b2e6c450 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 15 Oct 2024 17:58:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86bug?= =?UTF-8?q?=EF=BC=8C=E5=85=B3=E9=97=AD=E5=BC=80=E5=8D=95=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E6=88=90=E6=9C=AC=E5=93=81=E7=B1=BB=EF=BC=8C=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=8C=89=E8=BD=A6=E6=AC=A1=E5=85=A5=E5=BA=93=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98=EF=BC=8C=E5=85=B3=E9=97=AD=E5=A4=87=E8=B4=A7?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=BA=93=E4=BD=8D=E5=92=8C=E6=89=98=E7=9B=98?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mixins/index.js | 2 +- .../waybill/WarehousingByTrainNumber.js | 1 + .../ConfigureBillingAndWarehousing/list.vue | 2 +- .../driverArtery/basicdataDriverArteryAdd.vue | 15 ++++++- .../distribution/artery/VehicleStowage.vue | 2 +- .../deliverylist/distributionDeliveryList.vue | 17 ++++---- .../distribution/inventory/CreateOrder.vue | 40 +++++++++--------- .../stockup/distributionStockupDiscuss.vue | 40 +++++++++--------- .../stockup/distributionStockupMarket.vue | 42 +++++++++---------- .../stockup/distributionStockupSelf.vue | 40 +++++++++--------- .../waybill/WarehousingByTrainNumber.vue | 2 +- vite.config.js | 18 ++++---- 12 files changed, 116 insertions(+), 105 deletions(-) diff --git a/src/mixins/index.js b/src/mixins/index.js index 28c42aca..26f9ff39 100644 --- a/src/mixins/index.js +++ b/src/mixins/index.js @@ -45,7 +45,7 @@ export default { }) .catch(err => { console.log(err); - that.$route.push('/login'); + that.$router.push({ path: '/login' }); clearInterval(this.refreshTime); this.refreshLock = false; }); diff --git a/src/option/waybill/WarehousingByTrainNumber.js b/src/option/waybill/WarehousingByTrainNumber.js index 340c1dbd..151caeec 100644 --- a/src/option/waybill/WarehousingByTrainNumber.js +++ b/src/option/waybill/WarehousingByTrainNumber.js @@ -58,6 +58,7 @@ export const columnList = [ checkarr: [], fixed: false, sortable: true, + isshowSummary: true, }, { prop: 'warehouseName', diff --git a/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue b/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue index 8929a923..d53922c4 100644 --- a/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue +++ b/src/views/basicdata/ConfigureBillingAndWarehousing/list.vue @@ -382,7 +382,7 @@ const sizeChange = (pageSize: number) => { /** 页码改变执行的回调 */ const currentChange = current => { - details.pageNum = current; + details.page.pageNum = current; onLoad(); }; diff --git a/src/views/basicdata/driverArtery/basicdataDriverArteryAdd.vue b/src/views/basicdata/driverArtery/basicdataDriverArteryAdd.vue index 436e33e7..c0f55f10 100644 --- a/src/views/basicdata/driverArtery/basicdataDriverArteryAdd.vue +++ b/src/views/basicdata/driverArtery/basicdataDriverArteryAdd.vue @@ -292,13 +292,26 @@ export default { { label: '承运商', prop: 'carrierId', - filterable: true, type: 'select', filterable: true, dicUrl: '/api/logpm-basicdata/carrier/dictionary', options: [], rules: [{ required: true, message: '请选择承运商!', trigger: 'blur' }], }, + { + label: '结算渠道', + prop: 'settlementChannel', + type: 'select', + filterable: true, + dicUrl: '/api/logpm-basicdata/carrier/dictionary', + options: [], + rules: [{ required: true, message: '请选择结算渠道!', trigger: 'blur' }], + }, + { + label: '结算账号', + prop: 'roadOperationLicenseNub', + type: 'input', + }, { label: '运输协议', prop: 'transportationAgreement', diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue index ac2b9a44..dfde5561 100644 --- a/src/views/distribution/artery/VehicleStowage.vue +++ b/src/views/distribution/artery/VehicleStowage.vue @@ -941,7 +941,7 @@ const sizeChange = (pageSize: number) => { /** 页码改变执行的回调 */ const currentChange = current => { - details.pageNum = current; + details.page.pageNum = current; onLoad(); }; diff --git a/src/views/distribution/deliverylist/distributionDeliveryList.vue b/src/views/distribution/deliverylist/distributionDeliveryList.vue index faba5ed0..406b19f3 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryList.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryList.vue @@ -1,7 +1,7 @@