diff --git a/src/views/member/apply/form/applyForm.vue b/src/views/member/apply/form/applyForm.vue
index 97927a2..7a073ae 100644
--- a/src/views/member/apply/form/applyForm.vue
+++ b/src/views/member/apply/form/applyForm.vue
@@ -48,8 +48,8 @@
-
-
+
+
@@ -76,9 +76,10 @@
+
- 申请信息
+ 基本信息
@@ -87,30 +88,141 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 资质认证
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 身份认证
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
-
-
-
-
-
-
-
+
+
@@ -187,9 +299,33 @@ export default {
total: 0,
// 通告主认证申请表格数据
applyList: [],
+
+ applyJson:{
+ tradeImage: "",
+ busiImage: "",
+ recordImage: "",
+ contractImage: "",
+ shopImage: "",
+ jobImage: "",
+ logisticsImage: "",
+ brandName: "",
+ corpName: "",
+ authCorpName: "",
+ shopName: "",
+ shopLink: "",
+ industry: "",
+ corpCityCode: null,
+ corpCityName: "",
+ personCityCode: null,
+ personCityName: "",
+ name: "",
+ idCard: "",
+ review: ""
+ },
// 表单参数
form: {},
+
}
},
methods: {
@@ -235,8 +371,9 @@ export default {
const id = row.id || this.ids
getApply(id).then(response => {
this.form = response.data;
+ this.applyJson = JSON.parse(response.data.applyJson)
this.open = true;
- this.title = "审核";
+ this.title = "审核详情";
});
},
diff --git a/src/views/member/apply/index.vue b/src/views/member/apply/index.vue
index ca385b0..0c23425 100644
--- a/src/views/member/apply/index.vue
+++ b/src/views/member/apply/index.vue
@@ -71,8 +71,8 @@
-
-
+
+
-
-
+
+
- 申请信息
+ 基本信息
@@ -107,30 +107,141 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 资质认证
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 身份认证
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
-
-
-
-
-
-
-
+
+
@@ -221,6 +332,7 @@ export default {
nickname: null,
identityType: null,
},
+ applyJson:{},
// 表单参数
form: {},
// 表单校验
@@ -281,7 +393,7 @@ export default {
createTime: null,
updater: null,
updateTime: null,
- delFlag: null
+ delFlag: null,
};
this.resetForm("form");
},
@@ -304,6 +416,7 @@ export default {
const id = row.id || this.ids
getApply(id).then(response => {
this.form = response.data;
+ this.applyJson = JSON.parse(response.data.applyJson)
this.open = true;
this.title = "审核";
});