From 25ad34dad68ede830369d05014abc5c494dca33e Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Wed, 03 Sep 2025 16:59:30 +0800
Subject: [PATCH] 1
---
src/views/cryptos/Withdraw/withdrawPage.vue | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/cryptos/Withdraw/withdrawPage.vue b/src/views/cryptos/Withdraw/withdrawPage.vue
index e0ffef4..f84c0cf 100644
--- a/src/views/cryptos/Withdraw/withdrawPage.vue
+++ b/src/views/cryptos/Withdraw/withdrawPage.vue
@@ -20,11 +20,11 @@
</p>
</div>
<p class="font-35 mt-44 textColor">{{ $t('区块链网络') }}</p>
- <ul class="flex mt-22 flex-wrap">
+ <ul class="flex mt-22 flex-wrap">{{blockList}}
<li
class="w-210 h-96 mb-20 mr-40 rounded rounded-lg border border-solid flex justify-center items-center textColor"
:class="blockchainIndex == index ? 'active' : ''" v-for="(item, index) in blockList" :key="item.id"
- @click="changeBlockchain(item, index)">{{ item.blockchain_name }}</li>
+ @click="changeBlockchain(item, index)">{{ item.blockchainName }}</li>
</ul>
<p class="font-35 mt-22 textColor">{{ $t('地址') }}</p>
<div class="inputBackground flex items-center justify-between h-96 rounded mt-22">
@@ -263,13 +263,13 @@
coin: symbol
}).then((res) => {
this.blockList = res;
- this.blockName = res[0].blockchain_name;
+ this.blockName = res[0].blockchainName;
});
},
//选中链名称
changeBlockchain(item, index) {
this.blockchainIndex = index;
- this.blockName = item.blockchain_name;
+ this.blockName = item.blockchainName;
},
//获取钱包余额
getAvailable(symbol) {
--
Gitblit v1.9.3