Browse Source

修改提币提示报错

master
liaoxinyu 2 years ago
parent
commit
36a96d2142
  1. 3
      i18n/lang/en.json
  2. 3
      i18n/lang/zh-TW.json
  3. 2
      pages/assets/draw.vue

3
i18n/lang/en.json

@ -113,7 +113,8 @@
"c8": "Withdrawals require real-name authentication",
"c9": "Not real-name authenticated",
"c10": "Passed real-name authentication",
"c11": "Real-name authentication failed"
"c11": "Real-name authentication failed",
"withdrawal2": "Withdrawal has reached the risk control limit of the platform and requires real-name authentication"
},
"base": {
"a0": "Title",

3
i18n/lang/zh-TW.json

@ -113,7 +113,8 @@
"c8": "提幣需要通過實名認證",
"c9": "未實名認證",
"c10": "已通過實名認證",
"c11": "實名認證失敗"
"c11": "實名認證失敗",
"withdrawal2": "提幣達到了平台的風控限制,需要實名認證"
},
"base": {
"a0": "標題",

2
pages/assets/draw.vue

@ -424,7 +424,7 @@ export default {
},
draw() {
if(this.status!=2){
this.$toast($t('profile.withdrawal2'));
this.$toast(this.$t('common.withdrawal2'));
}
this.form.addressType = this.rechargeType;
this.form.coin_id = this.activeCoin.coin_id;

Loading…
Cancel
Save