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

View File

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

View File

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

View File

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

View File

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

View File

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