From 8cf36aa4d63ecd7e2741970ec4c1f70e11866604 Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Sat, 26 Apr 2025 18:28:42 +0800
Subject: [PATCH] st,4.26号修改内容

---
 src/page/user/Warehouse/data.list.vue |   43 ++++++++++++++++++++++++-------------------
 1 files changed, 24 insertions(+), 19 deletions(-)

diff --git a/src/page/user/Warehouse/data.list.vue b/src/page/user/Warehouse/data.list.vue
index 9870c9a..b2d5086 100644
--- a/src/page/user/Warehouse/data.list.vue
+++ b/src/page/user/Warehouse/data.list.vue
@@ -56,7 +56,7 @@
                     : 'color:#3e9976;'
                 "
               >
-                ₹{{ item.profitAndLose | _toLocaleString }}
+                {{ item.profitAndLose }}
               </div>
             </div>
           </van-col>
@@ -91,7 +91,7 @@
                 {{ $t("hj40") }}({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.now_price | _toLocaleString }}
+                {{ item.now_price }}
               </div>
             </div>
           </van-col>
@@ -101,7 +101,7 @@
                 {{ $t("持倉價") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.buyOrderPrice | _toLocaleString }}
+                {{ item.buyOrderPrice }}
               </div>
             </div>
           </van-col>
@@ -111,7 +111,7 @@
                 {{ $t("訂單金額") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.orderTotalPrice | _toLocaleString }}
+                {{ item.orderTotalPrice }}
               </div>
             </div>
           </van-col>
@@ -123,7 +123,7 @@
                 {{ $t("hj44") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.orderFee | _toLocaleString }}
+                {{ item.orderFee }}
               </div>
             </div>
           </van-col>
@@ -133,7 +133,7 @@
                 {{ $t("待补金额") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.amountToBeCovered | _toLocaleString }}
+                {{ item.amountToBeCovered }}
               </div>
             </div>
           </van-col>
@@ -143,7 +143,7 @@
                 {{ $t("止損價") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                {{ item.stopTargetPrice | _toLocaleString }}
+                {{ item.stopTargetPrice   }}
               </div>
             </div>
           </van-col>
@@ -153,7 +153,7 @@
                 {{ $t("止盈價") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                {{ item.profitTargetPrice | _toLocaleString }}
+                {{ item.profitTargetPrice   }}
               </div>
             </div>
           </van-col> -->
@@ -215,7 +215,7 @@
                     : 'color:#3e9976;'
                 "
               >
-                ₹{{ item.profitAndLose | _toLocaleString }}
+                {{ item.profitAndLose }}
               </div>
             </div>
           </van-col>
@@ -250,7 +250,7 @@
                 {{ $t("hj40") }}({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.now_price | _toLocaleString }}
+                {{ item.now_price }}
               </div>
             </div>
           </van-col>
@@ -260,7 +260,7 @@
                 {{ $t("持倉價") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.buyOrderPrice | _toLocaleString }}
+                {{ item.buyOrderPrice }}
               </div>
             </div>
           </van-col>
@@ -270,7 +270,7 @@
                 {{ $t("訂單金額") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.orderTotalPrice | _toLocaleString }}
+                {{ item.orderTotalPrice }}
               </div>
             </div>
           </van-col>
@@ -282,7 +282,7 @@
                 {{ $t("hj44") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                ₹{{ item.orderFee | _toLocaleString }}
+                {{ item.orderFee }}
               </div>
             </div>
           </van-col>
@@ -292,7 +292,7 @@
                 {{ $t("止損價") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                {{ item.stopTargetPrice | _toLocaleString }}
+                {{ item.stopTargetPrice   }}
               </div>
             </div>
           </van-col>
@@ -302,7 +302,7 @@
                 {{ $t("止盈價") }} ({{ activeObj.symbolCode }})
               </div>
               <div class="sport-content-text2">
-                {{ item.profitTargetPrice | _toLocaleString }}
+                {{ item.profitTargetPrice   }}
               </div>
             </div>
           </van-col> -->
@@ -471,13 +471,18 @@
         this.pageNum = 1;
         this.finished = false;
       }
-      const res = await getchicang({
+      const _laber = laber || this.activeObj.laber;
+      let opt = {
         state: this.actives,
-        stockType: laber || this.activeObj.laber,
-        stockCode: "HJYY",
+        stockType: _laber,
         pageNum: 1,
         pageSize: 30
-      });
+      };
+      if (_laber === "USDT") {
+        opt.stockCode = "HJYY";
+      }
+
+      const res = await getchicang(opt);
 
       this.loading = false;
       if (res.status === 0) {

--
Gitblit v1.9.3