From 9337c3cf960b60078558b7f942fd27f1ab39364b Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Tue, 16 Dec 2025 18:29:46 +0800
Subject: [PATCH] 改黑夜样式

---
 src/views/quotes/components/BuySellTradeTab.vue |   20 +++++++++++---------
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/src/views/quotes/components/BuySellTradeTab.vue b/src/views/quotes/components/BuySellTradeTab.vue
index aff4c8e..1c60f5d 100644
--- a/src/views/quotes/components/BuySellTradeTab.vue
+++ b/src/views/quotes/components/BuySellTradeTab.vue
@@ -47,7 +47,8 @@
               <img src="@/assets/image/quotes/grey-select.png" alt="select-icon" class="select-icon" />
             </div>
             <div class="option-box" v-show="isShow">
-              <div class="font-30" v-for="(item, index) in selectData" :key="item.type" @click="selectItem(item, index)">
+              <div class="font-30" v-for="(item, index) in selectData" :key="item.type"
+                @click="selectItem(item, index)">
                 {{
                   item.title }}
               </div>
@@ -92,7 +93,7 @@
         </div>
         <van-button type="danger" class="buy-btn" @click="handleOrder()">{{ props.isSell ? (t('卖出'))
           : (t('买入'))
-        }}</van-button>
+          }}</van-button>
         <p class="desc">
           <span class="label">
             {{ t('IndividualStockPositions') }}:<span class="num">100%</span>
@@ -120,7 +121,8 @@
           </ul>
 
         </div>
-        <img src="../../../assets/image/public/record.png" alt="record-img" class="pr-5 record-img " @click="goHistory" />
+        <img src="../../../assets/image/public/record.png" alt="record-img" class="pr-5 record-img "
+          @click="goHistory" />
       </div>
     </div>
     <section class="etf-container">
@@ -255,16 +257,16 @@
       </section>
       <div class="kline-container flex" v-if="showKlineChart">
         <div class="chart-index">
-          <fx-kline :height="500" :symbol="symbol" :isShowsolid="true" :chartType="chartType" v-if="symbol" @data="onData"
-            :key="`${symbol}-${timeValue}`" />
+          <fx-kline :height="500" :symbol="symbol" :isShowsolid="true" :chartType="chartType" v-if="symbol"
+            @data="onData" :key="`${symbol}-${timeValue}`" />
         </div>
       </div>
     </div>
   </section>
 </template>
-    
+
 <script setup>
-import { ref, onMounted, onBeforeUnmount, computed, reactive, onUnmounted, watch,defineExpose } from 'vue';
+import { ref, onMounted, onBeforeUnmount, computed, reactive, onUnmounted, watch, defineExpose } from 'vue';
 import { useRoute, useRouter } from 'vue-router';
 import { Tab, Tabs } from 'vant';
 import {
@@ -683,7 +685,7 @@
       no_zeroList.value = res.no_zero;
     })
 }
-const loadInit = () =>{
+const loadInit = () => {
   activePercenIndex.value = -1
   form.total = ''
   form.volume = ''
@@ -750,7 +752,7 @@
 }
 
 :deep(.van-overlay) {
-  background: rgba(0, 0, 0, .5);
+  background: rgba(255, 2550, 255, .5);
 }
 
 :deep(.van-popup) {

--
Gitblit v1.9.3