diff --git a/i18n/lang/en.json b/i18n/lang/en.json index 69a567d..d2bfa42 100644 --- a/i18n/lang/en.json +++ b/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", diff --git a/i18n/lang/zh-TW.json b/i18n/lang/zh-TW.json index 2e3730d..f6c27eb 100644 --- a/i18n/lang/zh-TW.json +++ b/i18n/lang/zh-TW.json @@ -113,7 +113,8 @@ "c8": "提幣需要通過實名認證", "c9": "未實名認證", "c10": "已通過實名認證", - "c11": "實名認證失敗" + "c11": "實名認證失敗", + "withdrawal2": "提幣達到了平台的風控限制,需要實名認證" }, "base": { "a0": "標題", diff --git a/pages/assets/draw.vue b/pages/assets/draw.vue index 18d8184..3227fea 100644 --- a/pages/assets/draw.vue +++ b/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;