From 4dd46609a019c5c5f60b368a7cd1c318d33d367e Mon Sep 17 00:00:00 2001 From: daimenglei <2585309659@qq.com> Date: Thu, 29 May 2025 14:58:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=94=A8=E6=88=B7=E3=80=81?= =?UTF-8?q?=E5=95=86=E6=88=B7=E3=80=81=E4=BB=A3=E7=90=86=E7=9A=84=E8=BA=AB?= =?UTF-8?q?=E4=BB=BD=E8=AF=81=E4=B8=8A=E4=BC=A0=E6=96=B9=E5=BC=8F=EF=BC=8C?= =?UTF-8?q?=E4=B8=8EAPP=E4=B8=80=E8=87=B4=EF=BC=8C=E7=BB=9F=E4=B8=80?= =?UTF-8?q?=E5=AD=98=E5=85=A8=E8=B7=AF=E5=BE=84=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/agentVerification/index.vue | 18 +++++++++--------- .../business/merchantVerification/index.vue | 18 +++++++++--------- src/views/business/userVerification/index.vue | 18 +++++++++--------- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/views/business/agentVerification/index.vue b/src/views/business/agentVerification/index.vue index 7d0b9e3..78fab77 100644 --- a/src/views/business/agentVerification/index.vue +++ b/src/views/business/agentVerification/index.vue @@ -181,13 +181,13 @@ {{auditForm.legalPersonIdCardShow}} - + - + - + {{auditForm.businessLicenseNumber}} @@ -219,13 +219,13 @@ {{ form.legalPersonIdCard }} - + - + - + {{ form.electronicContract }} @@ -537,19 +537,19 @@ export default { //身份证正面上传成功 handleSuccess_idCardFrontImagePath(response) { if (response.code === 200) { - this.form.idCardFrontImagePath = response.data; // 保存 URL 到表单 + this.form.idCardFrontImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } }, //身份证反面上传成功 handleSuccess_idCardBackImagePath(response) { if (response.code === 200) { - this.form.idCardBackImagePath = response.data; // 保存 URL 到表单 + this.form.idCardBackImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } }, //身份证手持上传成功 handleSuccess_userWithIdCardImagePath(response) { if (response.code === 200) { - this.form.userWithIdCardImagePath = response.data; // 保存 URL 到表单 + this.form.userWithIdCardImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } } } diff --git a/src/views/business/merchantVerification/index.vue b/src/views/business/merchantVerification/index.vue index 8307462..af9c548 100644 --- a/src/views/business/merchantVerification/index.vue +++ b/src/views/business/merchantVerification/index.vue @@ -178,13 +178,13 @@ {{auditForm.businessLicenseNumber}} - + - + - + @@ -213,13 +213,13 @@ {{ form.legalPersonIdCard }} - + - + - + {{ form.authenticationDate }} @@ -521,19 +521,19 @@ export default { //身份证正面上传成功 handleSuccess_idCardFrontImagePath(response) { if (response.code === 200) { - this.form.legalPersonIdCardFrontImagePath = response.data; // 保存 URL 到表单 + this.form.legalPersonIdCardFrontImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } }, //身份证反面上传成功 handleSuccess_idCardBackImagePath(response) { if (response.code === 200) { - this.form.legalPersonIdCardBackImagePath = response.data; // 保存 URL 到表单 + this.form.legalPersonIdCardBackImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } }, //身份证手持上传成功 handleSuccess_userWithIdCardImagePath(response) { if (response.code === 200) { - this.form.legalPersonUserWithIdCardImagePath = response.data; // 保存 URL 到表单 + this.form.legalPersonUserWithIdCardImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } } } diff --git a/src/views/business/userVerification/index.vue b/src/views/business/userVerification/index.vue index fa4d21f..1d4afc3 100644 --- a/src/views/business/userVerification/index.vue +++ b/src/views/business/userVerification/index.vue @@ -218,13 +218,13 @@ {{ auditForm.birthDate }} - + - + - + - + - + - + @@ -601,19 +601,19 @@ export default { //身份证正面上传成功 handleSuccess_idCardFrontImagePath(response) { if (response.code === 200) { - this.form.idCardFrontImagePath = response.data; // 保存 URL 到表单 + this.form.idCardFrontImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } }, //身份证反面上传成功 handleSuccess_idCardBackImagePath(response) { if (response.code === 200) { - this.form.idCardBackImagePath = response.data; // 保存 URL 到表单 + this.form.idCardBackImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } }, //身份证手持上传成功 handleSuccess_userWithIdCardImagePath(response) { if (response.code === 200) { - this.form.userWithIdCardImagePath = response.data; // 保存 URL 到表单 + this.form.userWithIdCardImagePath = this.getImgUrl + response.data; // 保存 URL 到表单 } } }