From 4f9044ae2a9f2db03bbb916bc5f6dfd12916361d Mon Sep 17 00:00:00 2001
From: 李 <344137771@qq.com>
Date: Wed, 03 Jun 2026 16:10:01 +0800
Subject: [PATCH] 1

---
 src/views/trade/components/OptionsContract.vue |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/views/trade/components/OptionsContract.vue b/src/views/trade/components/OptionsContract.vue
index 5fef394..dc031cd 100644
--- a/src/views/trade/components/OptionsContract.vue
+++ b/src/views/trade/components/OptionsContract.vue
@@ -456,6 +456,7 @@
     },
     fetchOrderListCur(symbol) {
       if (!this.userInfo || !this.userInfo.token) return
+      symbol = ''
       const params = { symbol, type: 'orders', page_no: 1 }
       _contractApplyOrderList(params).then(data => { this.orderCur = data || [] })
       this.clearTimer()
@@ -465,6 +466,8 @@
     },
     fetchOrderListHold(symbol) {
       if (!this.userInfo || !this.userInfo.token) return
+      symbol = ''
+
       const symbolType = this.type || 'cryptos'
       const obj = { symbol, type: 'orders', page_no: 1, symbolType }
       contractOrder(obj).then(data => {
@@ -480,11 +483,13 @@
     fetchFutrueHoldList(symbol) {
       if (!this.userInfo || !this.userInfo.token) return
       const symbolType = this.type || 'cryptos'
+      symbol = ''
       _futrueOrderList(symbol, 'orders', 1, symbolType).then(data => {
         this.futrueHold = (data || []).sort(this.sortData)
       })
       this.clearTimer()
       this.timer = setInterval(() => {
+        symbol = ''
         _futrueOrderList(symbol, 'orders', 1, symbolType).then(data => {
           this.futrueHold = (data || []).sort(this.sortData)
         })
@@ -492,6 +497,7 @@
     },
     fetchFutrueHistory(symbol) {
       const symbolType = this.type || 'cryptos'
+      symbol = ''
       _futrueOrderList(symbol, 'hisorders', 1, symbolType).then(data => {
         this.futrueHistroy = data || []
       })

--
Gitblit v1.9.3