优化账单中字段、基础信息展示身份证图片

This commit is contained in:
邱贞招 2023-12-26 18:30:32 +08:00
parent 6bc3939a1b
commit 552b052ec2
2 changed files with 14 additions and 8 deletions

View File

@ -305,22 +305,22 @@ export default {
minWidth: 200, minWidth: 200,
}, },
{ {
title: '还款金额', title: '还款金额(元)',
key: 'repaymentAmount', key: 'repaymentAmount',
minWidth: 100, minWidth: 100,
}, },
{ {
title: '第几期', title: '',
key: 'installmentNumber', key: 'installmentNumberStr',
minWidth: 30, minWidth: 30,
}, },
{ {
title: '还款时间', title: '还款时间',
key: 'repaymentDeadline', key: 'repaymentDeadlineStr',
minWidth: 180, minWidth: 180,
}, },
{ {
title: '还款状态', title: '状态',
key: 'repaymentStatus', key: 'repaymentStatus',
minWidth: 80, minWidth: 80,
}, },

View File

@ -20,9 +20,9 @@
<span class="dashboard-workplace-header-tip-desc-sp pb-1">真实姓名: {{ identityInfo.userIdentityInfo.realName }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-1">真实姓名: {{ identityInfo.userIdentityInfo.realName }}</span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">身份证号: {{ identityInfo.userIdentityInfo.idCardNumber }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-1">身份证号: {{ identityInfo.userIdentityInfo.idCardNumber }}</span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">手机号: {{ identityInfo.userIdentityInfo.phoneNumber }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-1">手机号: {{ identityInfo.userIdentityInfo.phoneNumber }}</span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">身份证正面照: {{ identityInfo.userIdentityInfo.idCardFrontPhoto }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-5">身份证正面照: <img :src="identityInfo.userIdentityInfo.idCardFrontPhoto" /></span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">身份证反面照: {{ identityInfo.userIdentityInfo.idCardBackPhoto }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-5">身份证反面照: <img :src="identityInfo.userIdentityInfo.idCardBackPhoto" /></span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">IP地址: {{ identityInfo.userIdentityInfo.ip }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-5">IP地址: {{ identityInfo.userIdentityInfo.ip }}</span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">邮箱: {{ identityInfo.userIdentityInfo.email }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-1">邮箱: {{ identityInfo.userIdentityInfo.email }}</span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">常用手机号: {{ identityInfo.userIdentityInfo.commonPhoneNumber }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-1">常用手机号: {{ identityInfo.userIdentityInfo.commonPhoneNumber }}</span>
<span class="dashboard-workplace-header-tip-desc-sp pb-1">提交时间: {{ identityInfo.userIdentityInfo.createTime }}</span> <span class="dashboard-workplace-header-tip-desc-sp pb-1">提交时间: {{ identityInfo.userIdentityInfo.createTime }}</span>
@ -139,6 +139,12 @@ export default {
.pb-1 { .pb-1 {
padding-bottom: 10px; padding-bottom: 10px;
} }
.pb-5{
padding-bottom: 50px;
img{
height: 70px;
}
}
.mr20 { .mr20 {
margin: 0 20px; margin: 0 20px;
} }