|
|
@ -178,13 +178,13 @@ |
|
|
|
{{auditForm.businessLicenseNumber}} |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardFront')"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + auditForm.idCardFrontImagePath" :preview-src-list="[getImgUrl + auditForm.idCardFrontImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="auditForm.idCardFrontImagePath" :preview-src-list="[auditForm.idCardFrontImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardBack')"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + auditForm.idCardBackImagePath" :preview-src-list="[getImgUrl + auditForm.idCardBackImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="auditForm.idCardBackImagePath" :preview-src-list="[auditForm.idCardBackImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardHolding')"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + auditForm.userWithIdCardImagePath" :preview-src-list="[getImgUrl + auditForm.userWithIdCardImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="auditForm.userWithIdCardImagePath" :preview-src-list="[auditForm.userWithIdCardImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.merchant.merchantVerification.authenticationFailureReason') + ':'" prop="failureReason"> |
|
|
|
<el-input v-model="auditForm.failureReason" :placeholder="$t('business.merchant.merchantVerification.authenticationFailureReasonPlaceholder')" /> |
|
|
@ -213,13 +213,13 @@ |
|
|
|
{{ form.legalPersonIdCard }} |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardFront') + ':'"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + form.idCardFrontImagePath" :preview-src-list="[getImgUrl + form.idCardFrontImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="form.idCardFrontImagePath" :preview-src-list="[form.idCardFrontImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardBack') + ':'"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + form.idCardBackImagePath" :preview-src-list="[getImgUrl + form.idCardBackImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="form.idCardBackImagePath" :preview-src-list="[form.idCardBackImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardHolding') + ':'"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + form.userWithIdCardImagePath" :preview-src-list="[getImgUrl + form.userWithIdCardImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="form.userWithIdCardImagePath" :preview-src-list="[form.userWithIdCardImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.merchant.merchantVerification.authenticationDate') + ':'" prop="authenticationDate"> |
|
|
|
{{ 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 到表单 |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|