From f9ed6a8d29e3d465afcdcd7e5840df1d77d49c66 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Tue, 22 Oct 2024 13:53:53 +0800
Subject: [PATCH] 修改首页客服图标
---
src/page/perpetualContract/index.vue | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/page/perpetualContract/index.vue b/src/page/perpetualContract/index.vue
index e7a3c5e..bef6622 100644
--- a/src/page/perpetualContract/index.vue
+++ b/src/page/perpetualContract/index.vue
@@ -378,7 +378,7 @@
if (type === "open" || type === "long" || type === "short" || !type) {
let initFunTimer = null;
let initFun = () => {
- _initOpen(symbol)
+ _initOpen(symbol.toLowerCase())
.then((data) => {
this.initOpen = data;
clearTimeout(initFunTimer);
@@ -445,11 +445,14 @@
return;
}
if (this.userInfo.token) {
+ // debugger
+ symbol = ''
_orderListHold(symbol).then((data) => {
// this.orderHold = data
this.orderHold = data.sort(this.sortData);
});
this.timer = setInterval(() => {
+ // console.log('112233',symbol);
_orderListHold(symbol).then((data) => {
// if (typeof this.timer === 'string') {
// this.timer = null
--
Gitblit v1.9.3