|
@@ -146,7 +146,7 @@
|
|
|
"
|
|
|
/>
|
|
|
</div>
|
|
|
- <div class="top-up" @click="goTopUp">Top UP</div>
|
|
|
+ <div v-if="currentCurrencyInfo.currencyCode != 'USD'" class="top-up" @click="goTopUp">Top UP</div>
|
|
|
</div>
|
|
|
<div class="msg">
|
|
|
Recommend quantity 100~10000
|
|
@@ -878,7 +878,7 @@ const setIsEmptyTxt = () => {
|
|
|
*/
|
|
|
const onIptSetErrorTxt = (params) => {
|
|
|
let {from, type,} = params;
|
|
|
- if(baseFormData.amountValue < currentCurrencyInfo.value.balance) {
|
|
|
+ if(+baseFormData.amountValue < +currentCurrencyInfo.value.balance) {
|
|
|
let res = calcIptValue();
|
|
|
if (!res.flag) {
|
|
|
iptErrMsgTxt.value = `Please reduce the 'winners' amount to ${res.count}`;
|