From 42faef34194c466f03e29d75a63ae502e4213044 Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Tue, 06 Jan 2026 10:38:46 +0800
Subject: [PATCH] 上一版是10.10的, 这版才是原始源码
---
src/components/Transform/assetsCenter/assets.vue | 52 ++++++++++++++++++++++++++++------------------------
1 files changed, 28 insertions(+), 24 deletions(-)
diff --git a/src/components/Transform/assetsCenter/assets.vue b/src/components/Transform/assetsCenter/assets.vue
index 9e73963..6737079 100644
--- a/src/components/Transform/assetsCenter/assets.vue
+++ b/src/components/Transform/assetsCenter/assets.vue
@@ -10,35 +10,39 @@
</div>
</div>
<!-- <div class="right-clock" @click="goRouter('/cryptos/exchangeHistory')"> -->
- <!-- <img src="../../../assets/image/assets-center/Subtract.png" class="subtract-icon" /> -->
+ <!-- <img src="../../../assets/image/assets-center/Subtract.png" class="subtract-icon" /> -->
<!-- </div> -->
</div>
<div class="font-bold text-66 mt-4 textColor" v-if="!eyetel">
{{ funds.total || "--" }}
- <span class="text-40 text-grey">≈{{ currency.currency_symbol }}
- {{ funds.total ? Number(funds.total * currency.rate).toFixed(2) : " --" }}</span>
+ <span class="text-40 text-grey">≈{{ currency.currency_symbol
+ }}{{
+ funds.total
+ ? Number(funds.total * currency.rate).toFixed(2)
+ : " --"
+}}</span>
</div>
<div class="text-6xl mt-4 textColor" v-else>********</div>
</div>
<!-- <div class="pl-8 pr-8 btn-box flex justify-between"> -->
- <!-- <div class="text-25 textColor tabBackground" @click="goRouter('/cryptos/recharge/rechargeList')"> -->
- <!-- <div class="word-wrap"> -->
- <!-- <img :src="handleImage(rechargeIcon)" alt="" /> -->
- <!-- <span> {{ $t("充币") }}</span> -->
- <!-- </div> -->
- <!-- </div> -->
- <!-- <div class="text-25 textColor tabBackground" @click="withdrawBtn"> -->
- <!-- <div class="word-wrap"> -->
- <!-- <img :src="handleImage(withdrawIcon)" alt="" /> -->
- <!-- <span>{{ $t("提币") }}</span> -->
- <!-- </div> -->
- <!-- </div> -->
- <!-- <div class="text-25 textColor tabBackground" @click="goRouter('/cryptos/exchangePage')"> -->
- <!-- <div class="word-wrap"> -->
- <!-- <img :src="handleImage(lrIcon)" alt="" /> -->
- <!-- <span>{{ $t("闪兑") }}</span> -->
- <!-- </div> -->
- <!-- </div> -->
+ <!-- <div class="text-25 textColor tabBackground" @click="goRouter('/cryptos/recharge/rechargeList')"> -->
+ <!-- <div class="word-wrap"> -->
+ <!-- <img :src="handleImage(rechargeIcon)" alt="" /> -->
+ <!-- <span> {{ $t("充币") }}</span> -->
+ <!-- </div> -->
+ <!-- </div> -->
+ <!-- <div class="text-25 textColor tabBackground" @click="withdrawBtn"> -->
+ <!-- <div class="word-wrap"> -->
+ <!-- <img :src="handleImage(withdrawIcon)" alt="" /> -->
+ <!-- <span>{{ $t("提币") }}</span> -->
+ <!-- </div> -->
+ <!-- </div> -->
+ <!-- <div class="text-25 textColor tabBackground" @click="goRouter('/cryptos/exchangePage')"> -->
+ <!-- <div class="word-wrap"> -->
+ <!-- <img :src="handleImage(lrIcon)" alt="" /> -->
+ <!-- <span>{{ $t("闪兑") }}</span> -->
+ <!-- </div> -->
+ <!-- </div> -->
<!-- </div> -->
<!-- <div class="divider-line"></div>-->
<div class="pl-8 pr-8">
@@ -49,7 +53,7 @@
<div class="flex justify-between">
<div class="flex items-center">
<img :src="item.symbol
- ? `https://huobicfg.s3.amazonaws.com/currency_icon/${item.symbol}.png`
+ ? `${HOST_URL}/symbol/${item.symbol.toLowerCase()}.png`
: handleImage('../../../assets/loading-default.png')
" class="w-16 h-16 rounded-full" />
<div class="text-grey symbol-name text-30 textColor2">
@@ -70,8 +74,8 @@
{{ item.volume ? Number(item.volume).toFixed(8) : "0.0" }}
</div>
<div class="text-grey text-30 mb-0">
- <!-- ≈{{ currency.currency_symbol }} -->
- ≈ $ {{ item.usdt ? Number(item.usdt).toFixed(2) : "0.0" }}
+ ≈{{ currency.currency_symbol }}
+ {{ item.usdt ? Number(item.usdt).toFixed(2) : "0.0" }}
</div>
</div>
<div class="flex-col text-30 text-right" v-else>
--
Gitblit v1.9.3