- {{ symbol[0].toLocaleUpperCase() }}
+
+
+
+
+
+ {{ calcBalance(asset.balance.total, asset.decimal, asset.symbol) }}
+ -- {{ asset.symbol }}
+
+
+
$ {{ assetUSD?.toNumber() }} USD
+
+
+ {{ tag.name }}
+
+
+
+
+
+
-
-
-
- {{ prettifyTokenBalance(token.confirmed + token.unconfirmed, token.decimal) + ' ' + token.symbol }}
-
-
-
-
-
Token Contract ID
-
-
-
{{ prettifyTokenGenesis(token.genesis) }}
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
Token Contract ID
+
+
+
{{ prettifyTokenGenesis(asset.genesis!) }}
+
+
-
+
-
No Token Asset.
+
+
+
+
+
+ Time
+
+
+
+
+
+ Time
+ Other
+
+
+
+
+
+
-
diff --git a/src/pages/wallet/components/AssetList.vue b/src/pages/wallet/components/AssetList.vue
index bc3d88c..cf53112 100644
--- a/src/pages/wallet/components/AssetList.vue
+++ b/src/pages/wallet/components/AssetList.vue
@@ -57,7 +57,7 @@ function toToken(token: Asset, address: string) {
router.push({
name: 'token',
params: { genesis: token.genesis, symbol: token.symbol, address },
- query: { genesis: token.genesis, symbol: token.symbol, address },
+ // query: { genesis: token.genesis, symbol: token.symbol, address },
})
}
diff --git a/src/router.ts b/src/router.ts
index 7a5a4e0..7e85726 100644
--- a/src/router.ts
+++ b/src/router.ts
@@ -239,6 +239,7 @@ const routes = [
meta: {
secondaryHeader: true,
headerTitle: 'ASSET',
+ noFooter: true,
},
},
{
@@ -412,14 +413,7 @@ const router = VueRouter.createRouter({
routes,
})
-const authPages = [
- '/welcome',
- '/welcome/import',
- '/welcome/create',
- '/lock',
- '/accounts',
- '/migrateV2',
-]
+const authPages = ['/welcome', '/welcome/import', '/welcome/create', '/lock', '/accounts', '/migrateV2']
router.beforeEach(async (to, _, next) => {
if (to.fullPath !== '/lock' && (await storage.get('locked'))) {