From 06bdf9a1a29c5f4cd98b5d3a8c3272a0c1d4314f Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Fri, 14 Nov 2025 11:28:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=A7=8B=E5=8F=91=E7=BD=91?= =?UTF-8?q?=E7=82=B9=EF=BC=8C=E5=8F=96=E4=BB=B6=E4=BA=BA=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E4=BA=BA=E7=BD=AE=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/emis/emisWaybill/waybillGot.vue | 5 ++++- src/views/emis/emisWaybill/waybillModify.vue | 4 ++++ src/views/emis/emisWaybill/waybillRecord.vue | 7 +++++-- .../emis/emisWaybillAjustApply/adjustPanel.vue | 16 +++++++++++++--- 4 files changed, 26 insertions(+), 6 deletions(-) diff --git a/src/views/emis/emisWaybill/waybillGot.vue b/src/views/emis/emisWaybill/waybillGot.vue index f0a2c3b0..b75c5a80 100644 --- a/src/views/emis/emisWaybill/waybillGot.vue +++ b/src/views/emis/emisWaybill/waybillGot.vue @@ -1970,7 +1970,8 @@ methods: { this.initGetTotalAvailablePag(this.form.sendSiteCode); this.calcBillFee(); - + this.form.takePieceEmployeeCode = null; + this.form.operateEmployeeCode = null; }, onStartSiteSelect(item){ @@ -1981,6 +1982,8 @@ methods: { } this.form.startSiteCode=item.siteCode; this.form.startSiteName=item.siteName; + this.form.takePieceEmployeeCode = null; + this.form.operateEmployeeCode = null; }, /** 提交按钮 */ submitForm() { diff --git a/src/views/emis/emisWaybill/waybillModify.vue b/src/views/emis/emisWaybill/waybillModify.vue index 8fd606e4..c55390c2 100644 --- a/src/views/emis/emisWaybill/waybillModify.vue +++ b/src/views/emis/emisWaybill/waybillModify.vue @@ -1970,6 +1970,8 @@ methods: { // } this.initGetTotalAvailablePag(this.form.sendSiteCode); // this.calcBillFee(); + this.form.takePieceEmployeeCode = null; + this.form.operateEmployeeCode = null; }, onStartSiteSelect(item){ if(!item){ @@ -1979,6 +1981,8 @@ methods: { } this.form.startSiteCode=item.siteCode; this.form.startSiteName=item.siteName; + this.form.takePieceEmployeeCode = null; + this.form.operateEmployeeCode = null; }, /** 提交按钮 */ submitForm() { diff --git a/src/views/emis/emisWaybill/waybillRecord.vue b/src/views/emis/emisWaybill/waybillRecord.vue index 565e0c1c..1794629e 100644 --- a/src/views/emis/emisWaybill/waybillRecord.vue +++ b/src/views/emis/emisWaybill/waybillRecord.vue @@ -1245,7 +1245,7 @@ watch: { }, deep: true }, - }, +}, created() { @@ -1950,7 +1950,8 @@ methods: { //深拷贝转换 this.initGetTotalAvailablePag(this.form.sendSiteCode); this.calcBillFee(); - + this.form.takePieceEmployeeCode = null; + this.form.operateEmployeeCode = null; }, onStartSiteSelect(item){ @@ -1961,6 +1962,8 @@ methods: { } this.form.startSiteCode=item.siteCode; this.form.startSiteName=item.siteName; + this.form.takePieceEmployeeCode = null; + this.form.operateEmployeeCode = null; }, /** 提交按钮 */ submitForm() { diff --git a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue index cb53d004..c01302df 100644 --- a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue +++ b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue @@ -224,7 +224,7 @@ - + 取件员调整 @@ -241,7 +241,7 @@ - + 操作员调整 @@ -1383,7 +1383,7 @@ export default { selectedMonthUserEnterpriseName:null, //选中的月结客户企业税号 selectedMonthUserEnterpriseTaxId:null, - + startSiteChangeCount:0, // 表单校验 rules: { billCode: [ @@ -1570,6 +1570,8 @@ export default { // 初始化企业等级 this.categorySender =null; this.categoryReciever =null; + this.startSiteChangeCount=0; + }, deep: true }, @@ -2267,6 +2269,7 @@ export default { } }, onStartSiteSelect(item) { + this.startSiteChangeCount++; if (!item) { this.form.startSiteCode = null; this.form.startSiteName = null; @@ -2274,6 +2277,13 @@ export default { } this.form.startSiteCode = item.siteCode; this.form.startSiteName = item.siteName; + if(this.startSiteChangeCount > 1){ + if (this.form.pickupMethod == '1') { + this.form.operateEmployeeCode = null; + } else if (this.form.pickupMethod == '2') { + this.form.takePieceEmployeeCode = null; + } + } }, //寄件省份变化 onChangeSenderProvince(val){