Browse Source

修改

master
liaoxinyu 2 years ago
parent
commit
8b532c5ac5
  1. 5
      src/components/NewMsg.vue
  2. 22
      src/views/wallet/exchange-assets.vue

5
src/components/NewMsg.vue

@ -38,7 +38,7 @@
></span>
</div>
<div class="content">
<p>{{ item.data.title }}</p>
<p class="text_title">{{ item.data.title }}</p>
<p class="sub-text text-muted">{{ item.created_at }}</p>
</div>
</a>
@ -142,4 +142,7 @@ export default {
right: 0;
top: 0;
}
.dropdown-item:hover .text_title{
color: #6c757d;
}
</style>

22
src/views/wallet/exchange-assets.vue

@ -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() {

Loading…
Cancel
Save