From 92b538a53c8fb96865c4f1d13bf58dfc721b0258 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com>
Date: Wed, 15 Feb 2023 13:51:57 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B5=84=E8=B4=A8bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/purchase/cert/supCertSet.vue | 10 ----------
src/views/purchase/company/supCompanyEditDialog.vue | 11 +++++++++--
2 files changed, 9 insertions(+), 12 deletions(-)
diff --git a/src/views/purchase/cert/supCertSet.vue b/src/views/purchase/cert/supCertSet.vue
index 9a0ecbcb..5282c61d 100644
--- a/src/views/purchase/cert/supCertSet.vue
+++ b/src/views/purchase/cert/supCertSet.vue
@@ -112,11 +112,6 @@
-
-
- {{ statusMap[scope.row.need] }}
-
-
-
-
- {{ statusMap[scope.row.need] }}
-
-
+
@@ -535,8 +536,13 @@ export default {
},
handleChange(value) {
- this.inputQuery.area =
- CodeToText[value[0]] + CodeToText[value[1]] + CodeToText[value[2]];
+ var area='';
+ for(var i=0;i<=2;i++){
+ if(CodeToText[value[i]]!=null && CodeToText[value[i]]!=undefined){
+ area+=CodeToText[value[i]];
+ }
+ }
+ this.inputQuery.area = area;
this.inputQuery.areaCode = value.toString();
}
,
@@ -548,6 +554,7 @@ export default {
this.editTye = 2;
} else {
this.formName = 1;
+ this.inputQuery.formData = {};
this.inputQuery.formData.addType=1;
this.editTye = 1;
}