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 到表单 } } }