|
|
|
@ -258,8 +258,8 @@ |
|
|
|
<div class="col-md-5"> |
|
|
|
<p>{{$t('wallet.rechargeInstructions')}}</p> |
|
|
|
<ul> |
|
|
|
<li>1. {{$t('wallet.automaticallyCredited')}}。 {{$t('wallet.tran',{num:10,name:depositeCoin})}}。</li> |
|
|
|
<li>2. {{$t('wallet.only',{name:depositeCoin})}}。</li> |
|
|
|
<li>1. {{$t('wallet.automaticallyCredited')}}{{lang=='tw'?'。':'.'}} {{$t('wallet.tran',{num:10,name:depositeCoin})}}{{lang=='tw'?'。':'.'}}</li> |
|
|
|
<li>2. {{$t('wallet.only',{name:depositeCoin})}}{{lang=='tw'?'。':'.'}}</li> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -360,7 +360,7 @@ |
|
|
|
</span> |
|
|
|
<span> |
|
|
|
{{$t('wallet.low')}}:{{withdrawFee.withdrawal_min}} {{withdrawCoin}} |
|
|
|
<router-link to="/wallet/address" class="text-primary">{{$t('wallet.addressList')}}</router-link> |
|
|
|
<router-link to="" @click.native="addressText" class="text-primary">{{$t('wallet.addressList')}}</router-link> |
|
|
|
</span> |
|
|
|
</label> |
|
|
|
<div class="input-group input-group-sm"> |
|
|
|
@ -415,9 +415,9 @@ |
|
|
|
<div class="col-md-6"> |
|
|
|
<p>{{$t('wallet.withdrawalInstructions')}}</p> |
|
|
|
<ul> |
|
|
|
<li>1. {{$t('wallet.enterAddress')}}。</li> |
|
|
|
<li>2. {{$t('wallet.notSend')}}。</li> |
|
|
|
<li>3. {{$t('wallet.deductionFee')}}。</li> |
|
|
|
<li>1. {{$t('wallet.enterAddress')}}{{lang=='tw'?'。':'.'}}</li> |
|
|
|
<li>2. {{$t('wallet.notSend')}}{{lang=='tw'?'。':'.'}}</li> |
|
|
|
<li>3. {{$t('wallet.deductionFee')}}{{lang=='tw'?'。':'.'}}</li> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -512,8 +512,9 @@ export default { |
|
|
|
}, |
|
|
|
getEmailCodeLock: false, |
|
|
|
JStime: 0, |
|
|
|
tiemr: null |
|
|
|
tiemr: null, |
|
|
|
// Graph_che: '', |
|
|
|
lang:'' |
|
|
|
}; |
|
|
|
}, |
|
|
|
|
|
|
|
@ -785,7 +786,11 @@ export default { |
|
|
|
}).catch( err =>{ |
|
|
|
console.log(err) |
|
|
|
}); |
|
|
|
} |
|
|
|
}, |
|
|
|
addressText(){ |
|
|
|
$("#withdraw").modal("hide"); |
|
|
|
this.$router.push("/wallet/address") |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
created() { |
|
|
|
@ -794,6 +799,7 @@ created() { |
|
|
|
this.getCoinAssets(); |
|
|
|
this.createWalletAddress(); |
|
|
|
this.getUserInfo() |
|
|
|
this.lang = localStorage.getItem('lang') |
|
|
|
}, |
|
|
|
|
|
|
|
mounted() { |
|
|
|
|