|
@@ -133,12 +133,12 @@
|
|
|
<img src="../../static/img/icon_deposit.png" />
|
|
|
<span>Deposit to Buy</span>
|
|
|
</div>
|
|
|
- <div class="item column" v-if="Number(usdAmountData.rechargeAmountValue) > 0">
|
|
|
+ <div class="item column">
|
|
|
<div class="l">Deposit</div>
|
|
|
<div class="r">
|
|
|
<FontZoom width="260" :unColor="true">
|
|
|
<img :src="currencyInfoData.iconPath" />
|
|
|
- <span>{{ usdAmountData.rechargeAmountValue | floatPrice(4) }} {{currencyInfoData.tokenSymbol}}</span>
|
|
|
+ <span><span v-if="Number(usdAmountData.rechargeAmountValue) > 0">{{ usdAmountData.rechargeAmountValue | floatPrice(4) }} </span>{{currencyInfoData.tokenSymbol}}</span>
|
|
|
</FontZoom>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -464,11 +464,7 @@ export default {
|
|
|
checkWaitInfo(isReport = true) {
|
|
|
if (!this.refreshRotate) {
|
|
|
this.refreshRotate = true;
|
|
|
- if (this.salePlans.currencyCode === 'USD') {
|
|
|
- this.getCurrencyInfoByCode()
|
|
|
- } else {
|
|
|
- this.getTokenRechargeRecord()
|
|
|
- }
|
|
|
+ this.getCurrencyInfoByCode();
|
|
|
setTimeout(() => {
|
|
|
this.refreshRotate = false;
|
|
|
}, 1000)
|