From 25c1d10f03df05104e323494fefd5af1e94c98f7 Mon Sep 17 00:00:00 2001
From: PC-20250623MANY\Administrator <344137771@qq.com>
Date: Thu, 21 Aug 2025 17:12:55 +0800
Subject: [PATCH] 1

---
 src/views/account/components/TradeLog.vue |   23 ++++++++++++-----------
 1 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/src/views/account/components/TradeLog.vue b/src/views/account/components/TradeLog.vue
index bd7ef07..69353c2 100644
--- a/src/views/account/components/TradeLog.vue
+++ b/src/views/account/components/TradeLog.vue
@@ -25,6 +25,7 @@
       <el-table
         :data="tableData"
         style="width: 100%; flex: 1"
+        height="250"
         empty-text="No Data"
         fit
       >
@@ -36,16 +37,12 @@
 
         <el-table-column prop="stockSpell" :label="$t('hj313')" width="150">
           <template slot-scope="scope">
-            <span class="market-tag sc_c" v-if="scope.row.stockGid == 'MEX'">
-              MEX
-            </span>
             <el-tag
-              type="success"
+              :type="scope.row.stockGid != $mc ? 'success' : ''"
               size="small"
               style="margin-right: 8px"
-              v-else-if="scope.row.stockGid == 'US'"
             >
-              US
+              {{ scope.row.stockGid }}
             </el-tag>
             <span>{{ scope.row.stockName }}</span>
           </template>
@@ -93,8 +90,11 @@
               {{ scope.row.stockGid | currencySymbol }}
               {{ scope.row.buyOrderPrice }}
             </span>
-            <div v-if="scope.row.stockGid == 'US'">
-              ≈ MX$ {{ (scope.row.buyOrderPrice * utm).toFixed(2) }}
+            <div v-if="scope.row.stockGid != $mc">
+              ≈ $
+              {{
+                (scope.row.buyOrderPrice * rate(scope.row.stockGid)).toFixed(2)
+              }}
             </div>
           </template>
         </el-table-column>
@@ -105,8 +105,9 @@
               {{ scope.row.stockGid | currencySymbol }}
               {{ scope.row.now_price }}
             </span>
-            <div v-if="scope.row.stockGid == 'US'">
-              ≈ MX$ {{ (scope.row.now_price * utm).toFixed(2) }}
+            <div v-if="scope.row.stockGid == $mc">
+              ≈ $
+              {{ (scope.row.now_price * rate(scope.row.stockGid)).toFixed(2) }}
             </div>
           </template>
         </el-table-column>
@@ -169,7 +170,7 @@
   },
   watch: {},
   async created() {
-    await this.getExchangeRate(); // 获取汇率
+    // await this.getExchangeRate(); // 获取汇率
     this.opt.stockType = this.type;
     this.apiInterface = api.getchicang; // 赋值接口
     this.init(); // 获取记录列表

--
Gitblit v1.9.3