feat(主播、代理的提现明细页): 样式调整,增加状态的语言翻译

This commit is contained in:
hzj 2026-04-16 17:07:07 +08:00
parent 9cc76db549
commit 5aff81b761

View File

@ -60,7 +60,7 @@
: 'linear-gradient(248deg, #FF7578 5.66%, #FF3D40 42.49%)',
}"
>
{{ transaction.withdrawStatus }}
{{ t(transaction.withdrawStatus) }}
</div>
</div>
</div>
@ -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 {