From fe190bf94a5a89d4cd8a85cebcec5b2fef3dc131 Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Sat, 05 Jul 2025 10:04:13 +0800
Subject: [PATCH] style

---
 src/components/Transform/list-quotation/index.vue |   45 +++++++++++++++++++++++++++++++++++++--------
 1 files changed, 37 insertions(+), 8 deletions(-)

diff --git a/src/components/Transform/list-quotation/index.vue b/src/components/Transform/list-quotation/index.vue
index 643a960..e992434 100644
--- a/src/components/Transform/list-quotation/index.vue
+++ b/src/components/Transform/list-quotation/index.vue
@@ -1,27 +1,42 @@
 <template>
   <div class="list-quatation">
-    <ex-tabs @tabs="onTabs"></ex-tabs>
+    <!-- <ex-tabs @tabs="onTabs"></ex-tabs> -->
     <van-list>
-      <van-cell>
+      <!-- <van-cell>
         <div class="flex items-center w-full text-grey font-26">
           <p class="left text-left">
             <span>{{ $t('交易对') }}
-              <!--                      <img src="./icon-sort.png" alt="icon" class="w-13 h-22"/>-->
             </span>
           </p>
           <p class="mid text-right">
             {{ $t('最新价') }}
-            <!--                  <img src="./icon-sort.png" alt="icon" class="w-13 h-22 ml-5"/>-->
           </p>
           <p class="right text-right">
             {{ active == 3 ? $t('成交额') : $t('24h涨跌幅') }}
-            <!--                  <img src="./icon-sort.png" alt="icon" class="w-13 h-22 ml-5"/>-->
           </p>
         </div>
-      </van-cell>
+      </van-cell> -->
+
+      <div class="flex items-end justify-between">
+        <div class="block text-22 font-medium">{{$t('Market')}}</div>
+        <div class="relative text-13">
+          <!-- <div class="flex px-10 justify-between rounded-full bg-black text-white min-w-100 box-border">
+            <div class="block">貨幣</div>
+            <div class="i-material-symbols:arrow-drop-down-rounded"></div>
+          </div> -->
+          <!-- <div class="px-9 py-10 bg-black text-white flex flex-col absolute min-w-100 box-border top-25 rounded-11 leading-28" style="display: none;">
+            <div>貨幣</div>
+            <div>數字貨幣</div>
+            <div>期貨</div>
+            <div>收藏</div>
+          </div> -->
+        </div>
+      </div>
+
+
       <transition-group :name="type" tag="div">
         <div v-if="active == 0" :key="active">
-          <van-cell v-for="item in listData" :key="item.id">
+          <van-cell v-for="item in listData" :key="item.id" style="background-color: #f0f0f0;margin-bottom: 10px;">
             <ul class="flex justify-between w-full items-center" @click="onItemClick(item)">
               <li class="flex items-center left">
                 <img
@@ -101,7 +116,6 @@
     </div> -->
   </div>
 </template>
-
 <script>
 import { List, Cell } from 'vant'
 import { mapGetters, mapActions } from 'vuex'
@@ -109,6 +123,8 @@
 import ExTabs from "@/components/Transform/ex-tabs/index.vue";
 import { HOST_URL } from '@/config'
 import { SET_CURRENCY } from "@/store/const.store";
+// import { useI18n } from "vue-i18n";
+// const t = useI18n()
 export default {
   name: 'ListQuotation',
   data() {
@@ -155,6 +171,10 @@
         });
       } else {
         setStorage('symbol', item.symbol)
+        //  this.$router.push({
+        //   path: `/foreign/deliveryContract/${item.symbol}`,
+        //   query: { type: 'cryptos' }
+        // });
         this.$router.push({
           path: `/cryptos/perpetualContract/${item.symbol}`,
           query: { type: 'cryptos' }
@@ -216,6 +236,7 @@
 </script>
 <style lang="scss" scoped>
 @import "@/assets/init.scss";
+@import '@/assets/css/deepseek_css_20250625_30ff932.css';
 
 #cryptos {
 
@@ -271,4 +292,12 @@
   }
 
 }
+
+.textColor {
+  color: #242629;
+}
+
+.text-grey{
+  // color: #8c8c8c;
+}
 </style>

--
Gitblit v1.9.3