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;
}