From 83177ee6d3105f680457ff66401af0d5a3ff140e Mon Sep 17 00:00:00 2001
From: daimenglei <2585309659@qq.com>
Date: Thu, 29 May 2025 02:43:21 +0800
Subject: [PATCH] =?UTF-8?q?=E6=99=AE=E9=80=9A=E7=94=A8=E6=88=B7=E8=AE=A4?=
=?UTF-8?q?=E8=AF=81=E5=90=8E=EF=BC=8C=E6=B7=BB=E5=8A=A0=E8=AF=A6=E6=83=85?=
=?UTF-8?q?=E4=B8=AD=E7=9A=84=E5=9B=BE=E7=89=87=E6=9F=A5=E7=9C=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/business/userVerification/index.vue | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/src/views/business/userVerification/index.vue b/src/views/business/userVerification/index.vue
index 97785af..8de4487 100644
--- a/src/views/business/userVerification/index.vue
+++ b/src/views/business/userVerification/index.vue
@@ -256,13 +256,13 @@
{{ form.birthDate }}
- {{ form.idCardFrontImagePath }}
+
- {{ form.idCardBackImagePath }}
+
- {{ form.userWithIdCardImagePath }}
+
@@ -485,7 +485,6 @@ export default {
this.reset();
this.form = row;
this.detailOpen = true;
- audit
},
/** 审核按钮操作 */
handleAudit(row) {
@@ -565,7 +564,7 @@ export default {
if (valid) {
this.$modal.confirm(this.$t('business.userManager.userVerification.confirmRefuse')).then(() => {
this.buttonLoading = true;
- this.auditForm.status = "2";
+ this.auditForm.status = "3";
userVerificationAudit(this.auditForm).then(response => {
this.$modal.msgSuccess(this.$t('business.userManager.userVerification.refuseSuccess'));
this.auditOpen = false;
@@ -582,7 +581,7 @@ export default {
this.$refs["auditForm"].clearValidate("failureReason");
this.$modal.confirm(this.$t('business.userManager.userVerification.confirmPass')).then(() => {
this.buttonLoading = true;
- this.auditForm.status = "1";
+ this.auditForm.status = "2";
userVerificationAudit(this.auditForm).then(response => {
this.$modal.msgSuccess(this.$t('business.userManager.userVerification.passSuccess'));
this.auditOpen = false;