From 9e1d12db30ee13e1f5a7afde6429d2738eac95d2 Mon Sep 17 00:00:00 2001 From: zhongzm Date: Wed, 5 Mar 2025 15:10:40 +0800 Subject: [PATCH] =?UTF-8?q?fix:kyc=E6=8B=92=E7=BB=9D=E5=8E=9F=E5=9B=A0?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/userInfo/kyc/index.vue | 33 +++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/src/views/userInfo/kyc/index.vue b/src/views/userInfo/kyc/index.vue index e468722..f09dcc1 100644 --- a/src/views/userInfo/kyc/index.vue +++ b/src/views/userInfo/kyc/index.vue @@ -16,7 +16,7 @@ const kycInfo = ref>({ status: 'UNVERIFIED', fullName: '', birthDate: '', - rejectReason: '', + description: '', verifiedTime: '' }); @@ -122,7 +122,7 @@ const getKYCStatus = async () => { status: normalizedStatus, fullName: kycData.realName || '', birthDate: kycData.birthDate || '', - rejectReason: kycData.description || '', + description: kycData.description || '', verifiedTime: kycData.updateTime || kycData.createTime || '', idType: kycData.idType, idFile: kycData.idFile, @@ -140,7 +140,7 @@ const getKYCStatus = async () => { status: 'UNVERIFIED', fullName: '', birthDate: '', - rejectReason: '', + description: '', verifiedTime: '' }; @@ -153,7 +153,7 @@ const getKYCStatus = async () => { status: 'UNVERIFIED', fullName: '', birthDate: '', - rejectReason: '', + description: '', verifiedTime: '' }; } @@ -369,10 +369,11 @@ onMounted(() => { -
+
@@ -681,5 +682,23 @@ onMounted(() => { .reject-reason { margin-top: 16px; } +.page-header { + margin-bottom: 32px; +} +.status-header { + display: flex; + align-items: center; + padding: 16px 0; + border-bottom: 1px solid #f0f0f0; +} +.status-title { + font-size: 16px; + font-weight: 500; + color: #1f1f1f; +} + +.status-tag { + margin-left: 16px; +}