|
|
@@ -215,6 +215,7 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getUserInfo();
|
|
|
+ this.actionGet();
|
|
|
this.getNftList();
|
|
|
},
|
|
|
methods: {
|
|
|
@@ -362,6 +363,18 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ actionGet() {
|
|
|
+ homeApi.assets().then(res => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.assets = res.data.assets;
|
|
|
+ this.transfes_txt = res.data.transfes_txt;
|
|
|
+ this.transfes_fee = res.data.transfes_fee;
|
|
|
+ this.giveaway = res.data.giveaway;
|
|
|
+ this.giveaway_txt = res.data.giveaway_txt;
|
|
|
+ this.coinList = res.data.coin_list;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
noopen() {
|
|
|
this.$toast(this.$t('lang2'));
|
|
|
},
|