remove comeing soon tip of wallet, hide cec, ceg count

This commit is contained in:
cebgcontract 2022-05-29 13:51:41 +08:00
parent 76e7742de3
commit 9180f5e18b
3 changed files with 7 additions and 6 deletions

View File

@ -96,7 +96,7 @@
</label>
<a class="navItem" href="/mynft">MyNFT</a>
<a class="navItem" href="javascript:void(0)" @click="comingSoon">Account Setting</a>
<a class="navItem" href="javascript:void(0)" @click="comingSoon">Wallet</a>
<a class="navItem" href="/wallet">Wallet</a>
<!-- <label class="navItem contact">Contact us</label>-->
</div>
</div>

View File

@ -25,7 +25,7 @@
</div>
<div class="item">
<svg-icon class="icon" name="wallet"></svg-icon>
<a class="itemName" href="javascript:void(0)" @click="comingSoon" >Wallet</a>
<a class="itemName" href="/wallet" >Wallet</a>
</div>
<div class="item">
<span class="itemName" @click="disconnectWallet">Logout</span>
@ -64,6 +64,7 @@ export default class extends Vue {
}
async disconnectWallet() {
console.log('disconnectWallet')
return this.chainManager.logout()
}

View File

@ -1,6 +1,6 @@
<template>
<div class="wallet-container">
<div class="header">
<!-- <div class="header">
<div class="label">Wallet</div>
</div>
<div class="horizontal-bar"></div>
@ -31,12 +31,12 @@
:process = "showOrderStatus"
@coin-card-clicked = "onCardClicked"
:key="d.symbol"></coin-card>
</div>
</div> -->
<div class="header ingame"><span class="label">Ingame Currency</span>
</div>
<div class="horizontal-bar"></div>
<div class="wallet">
<placeholder-panel></placeholder-panel>
<!-- <placeholder-panel></placeholder-panel> -->
<coin-card
v-for="d in gameCoinList"
:coin-data="d"
@ -101,7 +101,7 @@ export default class WalletPanel extends Vue {
private accountChange() {
this.changeNet(this.nets[0].id)
if (this.account) {
this.updateCurrencies()
//this.updateCurrencies()
this.updateGameCoins()
this.checkOrderHistory()
}