From 552b052ec2858abcf75930e0bcc4351abd08d803 Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Tue, 26 Dec 2023 18:30:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=B4=A6=E5=8D=95=E4=B8=AD?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E3=80=81=E5=9F=BA=E7=A1=80=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E8=BA=AB=E4=BB=BD=E8=AF=81=E5=9B=BE=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/user/list/userDetails.vue | 10 +++++----- src/views/user/list/userIdentity.vue | 12 +++++++++--- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/views/user/list/userDetails.vue b/src/views/user/list/userDetails.vue index df29e05..2fc908a 100644 --- a/src/views/user/list/userDetails.vue +++ b/src/views/user/list/userDetails.vue @@ -305,22 +305,22 @@ export default { minWidth: 200, }, { - title: '还款金额', + title: '还款金额(元)', key: 'repaymentAmount', minWidth: 100, }, { - title: '第几期', - key: 'installmentNumber', + title: '期数', + key: 'installmentNumberStr', minWidth: 30, }, { title: '还款时间', - key: 'repaymentDeadline', + key: 'repaymentDeadlineStr', minWidth: 180, }, { - title: '还款状态', + title: '状态', key: 'repaymentStatus', minWidth: 80, }, diff --git a/src/views/user/list/userIdentity.vue b/src/views/user/list/userIdentity.vue index c38fda1..61ca7c9 100644 --- a/src/views/user/list/userIdentity.vue +++ b/src/views/user/list/userIdentity.vue @@ -20,9 +20,9 @@ 真实姓名: {{ identityInfo.userIdentityInfo.realName }} 身份证号: {{ identityInfo.userIdentityInfo.idCardNumber }} 手机号: {{ identityInfo.userIdentityInfo.phoneNumber }} - 身份证正面照: {{ identityInfo.userIdentityInfo.idCardFrontPhoto }} - 身份证反面照: {{ identityInfo.userIdentityInfo.idCardBackPhoto }} - IP地址: {{ identityInfo.userIdentityInfo.ip }} + 身份证正面照: + 身份证反面照: + IP地址: {{ identityInfo.userIdentityInfo.ip }} 邮箱: {{ identityInfo.userIdentityInfo.email }} 常用手机号: {{ identityInfo.userIdentityInfo.commonPhoneNumber }} 提交时间: {{ identityInfo.userIdentityInfo.createTime }} @@ -139,6 +139,12 @@ export default { .pb-1 { padding-bottom: 10px; } +.pb-5{ + padding-bottom: 50px; + img{ + height: 70px; + } +} .mr20 { margin: 0 20px; }