From a2d14a90fc53b1c14def5d3e620b12581759e379 Mon Sep 17 00:00:00 2001
From: wuteng <419274783@qq.com>
Date: Mon, 25 Aug 2025 17:23:36 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AF=84=E4=BB=B6=E4=BA=BA=E5=9C=B0=E5=9D=80?=
=?UTF-8?q?=E5=8A=A0=E4=BC=81=E4=B8=9A=E7=A8=8E=E5=8F=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../emisCustomerAddress/senderAddressForm.vue | 22 ++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/src/views/emis/emisCustomerAddress/senderAddressForm.vue b/src/views/emis/emisCustomerAddress/senderAddressForm.vue
index 2b916194..1f36b47a 100644
--- a/src/views/emis/emisCustomerAddress/senderAddressForm.vue
+++ b/src/views/emis/emisCustomerAddress/senderAddressForm.vue
@@ -29,7 +29,7 @@
-
+
@@ -47,6 +47,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -215,6 +225,9 @@ export default {
updateTime: null,
remark: null,
parseAddress:null,
+ enterpriseName: null,
+ enterpriseTaxId: null,
+
};
this.resetForm("form");
},
@@ -236,6 +249,13 @@ export default {
}
});
},
+ handleCountryChange(val){
+ if(val !== '0086'){
+ this.form.enterpriseName = null;
+ this.form.enterpriseTaxId = null;
+ }
+ }
+
}
};