From 52b00599d3b8359549ac8bcfbbb63f6578388121 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Mon, 07 Apr 2025 17:25:53 +0800
Subject: [PATCH] 11
---
pages/exchange/index.vue | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/pages/exchange/index.vue b/pages/exchange/index.vue
index 57fec34..759c5a0 100644
--- a/pages/exchange/index.vue
+++ b/pages/exchange/index.vue
@@ -40,15 +40,15 @@
<table>
<tr>
<td>24H{{ $t("exchange.e3") }}</td>
- <td class="color-light">{{ tvBars.high.toFixed(2) }}</td>
+ <td class="color-light">{{ activeCoin.high.toFixed(2) }}</td>
</tr>
<tr>
<td>24H{{ $t("exchange.e4") }}</td>
- <td class="color-light">{{ tvBars.low.toFixed(2) }}</td>
+ <td class="color-light">{{ activeCoin.low.toFixed(2) }}</td>
</tr>
<tr v-if="!query.contract">
<td>24H{{ $t("exchange.e5") }}</td>
- <td class="color-light">{{tvBars.volume.toFixed(2)}}</td>
+ <td class="color-light">{{activeCoin.vol.toFixed(0)}}</td>
</tr>
</table>
</view>
@@ -202,11 +202,11 @@
index: "",
marketList: [],
tvBars:{
- close:0,
- amount:0,
- high:0,
- low:0,
- volume:0,
+ close:0.00,
+ amount:0.00,
+ high:0.00,
+ low:0.00,
+ volume:0.00,
},
collect: [],
quote: {},
--
Gitblit v1.9.3