chore(BD、BDLeader的收益操作页面): 样式翻译调整

This commit is contained in:
hzj 2026-03-20 17:36:58 +08:00
parent adc033abaf
commit 97f0340daf
6 changed files with 21 additions and 11 deletions

View File

@ -207,7 +207,6 @@
"rejection": "مرفوض",
"kyc": "KYC",
"passport_id_card": "جواز السفر/بطاقة الهوية:({current}/3)",
"transfer_coins": "تحويل العملات",
"plus_coins": "+{amount} عملات",

View File

@ -207,7 +207,6 @@
"rejection": "প্রত্যাখ্যান",
"kyc": "কেওয়াইসি",
"passport_id_card": "পাসপোর্ট/আইডি কার্ড:({current}/3)",
"transfer_coins": "মুদ্রা স্থানান্তর",
"plus_coins": "+{amount} মুদ্রা",

View File

@ -207,7 +207,6 @@
"rejection": "Rejection",
"kyc": "KYC",
"passport_id_card": "Passport/ID card:({current}/3)",
"transfer_coins": "Transfer Coins",
"plus_coins": "+{amount} Coins",

View File

@ -207,7 +207,6 @@
"rejection": "Red",
"kyc": "KYC",
"passport_id_card": "Pasaport/Kimlik kartı:({current}/3)",
"transfer_coins": "Coin Transfer",
"plus_coins": "+{amount} Coin",

View File

@ -207,7 +207,6 @@
"rejection": "已拒绝",
"kyc": "KYC",
"passport_id_card": "护照/身份证:({current}/3)",
"transfer_coins": "转账金币",
"plus_coins": "+{amount} 金币",

View File

@ -410,9 +410,10 @@
<div v-else style="width: 100%; display: flex; flex-direction: column; gap: 8px">
<!-- 图片 -->
<div style="display: flex; justify-content: space-between; align-items: center">
<span style="font-weight: 510; font-size: 1em">{{
t('passport_id_card', { current: bankCardInfo.previewUrls.length })
}}</span>
<span style="font-weight: 510; font-size: 1em"
>{{ t('passport_id_card_title') }}:</span
>
<img
src="../../assets/icon/arrow.png"
alt=""
@ -430,15 +431,29 @@
/>
</div>
<!-- 卡号 -->
<!-- 联系方式 -->
<div style="font-weight: 500">{{ t('contact_number') }}:</div>
<div style="color: rgba(0, 0, 0, 0.4); font-weight: 600; font-size: 0.8em">
<div
style="
color: rgba(0, 0, 0, 0.4);
font-weight: 600;
font-size: 0.8em;
overflow-wrap: break-word;
"
>
{{ bankCardInfo.contactNumber }}
</div>
<!-- 备注信息 -->
<div style="font-weight: 500">{{ t('other_description') }}:</div>
<div style="color: rgba(0, 0, 0, 0.4); font-weight: 600; font-size: 0.8em">
<div
style="
color: rgba(0, 0, 0, 0.4);
font-weight: 600;
font-size: 0.8em;
overflow-wrap: break-word;
"
>
{{ bankCardInfo.otherDescription }}
</div>
</div>