From f3c40298d1ef0e3424483d99854c9bef3f92573a Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Tue, 15 Jul 2025 11:34:49 +0800
Subject: [PATCH] 货币交易翻译

---
 src/views/cryptos/TrendDetails/index.vue |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/views/cryptos/TrendDetails/index.vue b/src/views/cryptos/TrendDetails/index.vue
index 6a68978..b8860d4 100644
--- a/src/views/cryptos/TrendDetails/index.vue
+++ b/src/views/cryptos/TrendDetails/index.vue
@@ -8,7 +8,7 @@
         <div class="w-368 h-80 mr-32 font-28 flex justify-center items-center rounded box-border tabBtn"
           :class="tab === '1' ? 'activeBtn' : ''" @click="onTab('1')">{{ $t('永续合约') }}</div>
         <div class="w-368 h-80  font-28 flex justify-center items-center rounded box-border tabBtn"
-          :class="tab === '2' ? 'activeBtn' : ''" @click="onTab('2')">{{ queryType == 'cryptos' ? $t('交割合约') : $t('期货交易')
+          :class="tab === '2' ? 'activeBtn' : ''" @click="onTab('2')">{{ queryType == 'cryptos' ? $t('交割合约') : $t('货币交易')
           }}</div>
       </div> -->
       <!-- 数据区 -->
@@ -43,7 +43,8 @@
                   <p>{{ quote.low || '--' }}</p>
                 </div>
                 <div class="flex w-1/2 flex-col justify-between w-220 mt-20">
-                  <p class="text-grey">{{ queryType == 'cryptos' ? $t('24h成交额') + '(USDT)' : $t('24h成交额') + '(USD)' }}</p>
+                  <p class="text-grey">{{ queryType == 'cryptos' ? $t('24h成交额') + '(USDT)' : $t('24h成交额') + '(USD)' }}
+                  </p>
                   <p>{{ (quote.volume * 1).toFixed(2) || '--' }}</p>
                 </div>
               </div>
@@ -72,7 +73,7 @@
                     <p>{{ $t('买入') }}</p>
                     <p class="flex  justify-between  font-22">
                       <span style="margin-right: -10px;">{{ $t('价格') }}{{ queryType == 'cryptos' ? '(USDT)' : '(USD)'
-                      }}</span>
+                        }}</span>
                       <span class="buy-title">{{ $t('数量') }}({{ symbolData.toUpperCase() }})</span>
                     </p>
                   </li>
@@ -114,7 +115,8 @@
                   <span class="flex-1">{{ $t('时间') }}</span>
                   <span class="flex-1">{{ $t('方向') }}</span>
                   <span class="flex-1">{{ $t('价格') }}{{ queryType == 'cryptos' ? '(USDT)' : '(USD)' }}</span>
-                  <span class="flex-1 flex justify-center buy-title">{{ $t('数量') }}({{ symbolData.toUpperCase() }})</span>
+                  <span class="flex-1 flex justify-center buy-title">{{ $t('数量') }}({{ symbolData.toUpperCase()
+                    }})</span>
                 </li>
                 <li v-for="(item, index) in deals" :key="item.ts + item.price + item.amount || index"
                   class="flex  justify-between mt-30">
@@ -213,8 +215,9 @@
         </div>
       </div>
       <van-popup v-model:show="show" class="rounded-2xl" :key="initFutrue.session_token">
-        <popup-confirm-order :paras="initFutrue.para" :symbol="symbol" :direction="direction" :balance="initFutrue.amount"
-          :price="quote.close" @close="onClose" @confirm="onOrderConfirm" v-if="popType === 'confirm'" />
+        <popup-confirm-order :paras="initFutrue.para" :symbol="symbol" :direction="direction"
+          :balance="initFutrue.amount" :price="quote.close" @close="onClose" @confirm="onOrderConfirm"
+          v-if="popType === 'confirm'" />
         <popup-delivery showBtns :detailData="detailData" :key="detailData.order_no" @close="onClose"
           @continueToBuy="order()" @timeEnd="handleTimeEnd" :price="quote.close" v-else />
       </van-popup>

--
Gitblit v1.9.3