From 401c2caeedb8952ca5f792381fff9fc9b83f663d Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Mon, 18 Aug 2025 14:28:41 +0800
Subject: [PATCH] 1
---
src/views/trade/index.vue | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/views/trade/index.vue b/src/views/trade/index.vue
index 7d4f090..817e013 100644
--- a/src/views/trade/index.vue
+++ b/src/views/trade/index.vue
@@ -13,7 +13,6 @@
<ContractHeader :symbol="symbol" :range="range" :selectIndex="selectIndex" :symbolName="symbolName"
:balance="userInfo.balance" @tab="onTopTab" @update-coin="onUpdate">
</ContractHeader>
-
<!-- <Head :symbolObj="symbolObj"></Head> -->
<div :key="symbol" class="pb-108 no_touch">
@@ -305,10 +304,10 @@
}
},
async created() {
-
if (this.$route.query.type) {
this.type = this.$route.query.type
}
+ this.keyIndex += 1
await this.SET_COIN_LIST(this.type)
_getBalance().then(data => { // 获取用户余额
this.$store.commit('user/SET_USERINFO', { balance: data.money })
@@ -317,8 +316,10 @@
})
},
methods: {
+
...mapActions('home', [SET_COIN_LIST]),
onUpdate(symbol) { // 更新
+ this.keyIndex += 1
this.currentType = 'long'
this.symbol = symbol
this.closeSocket()
--
Gitblit v1.9.3