|
|
@@ -28,7 +28,7 @@
|
|
|
</div>
|
|
|
<div class="box_item">
|
|
|
<span class="left">{{ $t('lang477') }}</span>
|
|
|
- <span class="walletbalance">{{ walletBalance }}</span>
|
|
|
+ <span class="walletbalance">{{ Number(walletBalance).toString() }}</span>
|
|
|
</div>
|
|
|
<div class="box_item">
|
|
|
<span class="left">{{ $t('lang148') }}</span>
|
|
|
@@ -126,7 +126,7 @@ export default {
|
|
|
return this.$toast(this.$t('lang160'));
|
|
|
}
|
|
|
if (Number(this.walletBalance) < Number(this.amount)) {
|
|
|
- return this.$toast(this.$t('lang159').replace('XX', this.amount).replace('CC', this.walletBalance));
|
|
|
+ return this.$toast(this.$t('lang159').replace('XX', this.amount).replace('CC', Number(this.walletBalance).toString()));
|
|
|
}
|
|
|
this.show = true;
|
|
|
usdt
|