diff --git a/src/views/merchant/application/index.vue b/src/views/merchant/application/index.vue index 99ff794..f0770cf 100644 --- a/src/views/merchant/application/index.vue +++ b/src/views/merchant/application/index.vue @@ -516,8 +516,18 @@ export default { }, // 查看 - handleView(row) { - this.statusAuditForm = row; + handleView(item) { + console.log(item) + this.statusAuditForm = item; + if (item.financial_bank) { + let bi = JSON.parse(item.financial_bank); + item.bank_username = bi.bank; + item.bank_code = bi.bank_code; + item.bank_opening = bi.bank_branch; + if (bi.bank_front[0]) { + this.$set(item, 'bank_img', bi.bank_front); + } + } this.formShow = true; }, diff --git a/src/views/merchant/type/typeEditForm.vue b/src/views/merchant/type/typeEditForm.vue index 321fb27..f06a159 100644 --- a/src/views/merchant/type/typeEditForm.vue +++ b/src/views/merchant/type/typeEditForm.vue @@ -26,7 +26,7 @@ - +