diff --git a/src/views/Wallet/Detail/InformationDetails.vue b/src/views/Wallet/Detail/InformationDetails.vue index 2121065..5253a90 100644 --- a/src/views/Wallet/Detail/InformationDetails.vue +++ b/src/views/Wallet/Detail/InformationDetails.vue @@ -60,7 +60,7 @@ : 'linear-gradient(248deg, #FF7578 5.66%, #FF3D40 42.49%)', }" > - {{ transaction.withdrawStatus }} + {{ t(transaction.withdrawStatus) }} @@ -147,11 +147,11 @@ const fetchData = async () => { } if (item.details.latestApprovalStatus == 'SUBMIT') { - withdrawStatus = 'Under review' + withdrawStatus = 'under_review' } else if (item.details.latestApprovalStatus == 'PASS') { - withdrawStatus = 'Approved' + withdrawStatus = 'approved' } else if (item.details.latestApprovalStatus == 'NOT_PASS') { - withdrawStatus = 'Rejection' + withdrawStatus = 'rejection' } break default: @@ -392,7 +392,7 @@ onMounted(() => { /* RTL支持 */ [dir='rtl'] .transaction-content { - flex-direction: row-reverse; + /* flex-direction: row-reverse; */ } [dir='rtl'] .transaction-info {