|
|
@ -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="auditForm.idCardFrontImagePath" :preview-src-list="[form.idCardFrontImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + auditForm.idCardFrontImagePath" :preview-src-list="[getImgUrl + auditForm.idCardFrontImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardBack')"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="auditForm.idCardBackImagePath" :preview-src-list="[form.idCardBackImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + auditForm.idCardBackImagePath" :preview-src-list="[getImgUrl + auditForm.idCardBackImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardHolding')"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="auditForm.userWithIdCardImagePath" :preview-src-list="[form.userWithIdCardImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + auditForm.userWithIdCardImagePath" :preview-src-list="[getImgUrl + 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="form.idCardFrontImagePath" :preview-src-list="[form.idCardFrontImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + form.idCardFrontImagePath" :preview-src-list="[getImgUrl + form.idCardFrontImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardBack') + ':'"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="form.idCardBackImagePath" :preview-src-list="[form.idCardBackImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + form.idCardBackImagePath" :preview-src-list="[getImgUrl + form.idCardBackImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.userManager.userVerification.idCardHolding') + ':'"> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="form.userWithIdCardImagePath" :preview-src-list="[form.userWithIdCardImagePath]"/> |
|
|
|
<el-image style="width: 90px; height: 30px" :src="getImgUrl + form.userWithIdCardImagePath" :preview-src-list="[getImgUrl + form.userWithIdCardImagePath]"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="$t('business.merchant.merchantVerification.authenticationDate') + ':'" prop="authenticationDate"> |
|
|
|
{{ form.authenticationDate }} |
|
|
@ -328,6 +328,9 @@ export default { |
|
|
|
// 计算属性:动态生成上传URL |
|
|
|
uploadUrl() { |
|
|
|
return `${process.env.VUE_APP_BASE_API}/commonFile/upload`; |
|
|
|
}, |
|
|
|
getImgUrl(){ |
|
|
|
return "http://app.lfpaylaos.com/file/"; |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|