From 7408d365b7a7a86a88a254daad010541cc5ed9e3 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Wed, 15 Oct 2025 16:08:19 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E7=82=B9=E8=B4=B9=E7=94=A8=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E6=A0=A1=E9=AA=8C=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../emis/emisWaybillAjustApply/adjustPanel.vue | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue index aaba533f..b8928863 100644 --- a/src/views/emis/emisWaybillAjustApply/adjustPanel.vue +++ b/src/views/emis/emisWaybillAjustApply/adjustPanel.vue @@ -1555,12 +1555,18 @@ export default { } else { this.selectedMonthUserEnterpriseName = ''; this.selectedMonthUserEnterpriseTaxId = ''; - this.selectedSenderEnterpriseName = this.billDetail.sender.enterpriseName; - this.selectedSenderEnterpriseTaxId = this.billDetail.sender.enterpriseTaxId; + if(this.billDetail.sender){ + this.selectedSenderEnterpriseName = this.billDetail.sender.enterpriseName; + this.selectedSenderEnterpriseTaxId = this.billDetail.sender.enterpriseTaxId; + } + } + if(this.billDetail.sender){ + this.senderCountryCode = this.billDetail.sender.country; + } + if(this.billDetail.reciever){ + this.recieverCountryCode = this.billDetail.reciever.country; + this.recieverRegionName = this.billDetail.reciever.provinceName; } - this.senderCountryCode = this.billDetail.sender.country; - this.recieverCountryCode = this.billDetail.reciever.country; - this.recieverRegionName = this.billDetail.reciever.provinceName; // 初始化企业等级 this.categorySender =null; this.categoryReciever =null;