From eeb8f18b48989bac5eb5847a51359496956c5339 Mon Sep 17 00:00:00 2001
From: 李 <344137771@qq.com>
Date: Thu, 30 Apr 2026 18:32:45 +0800
Subject: [PATCH] 1

---
 src/page/list/trading-list.vue |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/page/list/trading-list.vue b/src/page/list/trading-list.vue
index 66d3361..7470495 100644
--- a/src/page/list/trading-list.vue
+++ b/src/page/list/trading-list.vue
@@ -19,16 +19,17 @@
             />
           </div>
         </div>
-        <div class="right_search">Search</div>
+        <div class="right_search" @click="sousuo">{{ $t("Search") }}</div>
       </div>
     </div>
-    <tabsList />
+    <tabsList ref="tabsList" />
   </div>
 </template>
 
 <script>
 import tabsList from "./tradingList/tabs";
 export default {
+  name: "TradingList",
   components: { tabsList },
   data() {
     return {
@@ -36,8 +37,12 @@
     };
   },
   methods: {
+    sousuo() {
+      this.$refs.tabsList.sousuo = this.gpcode;
+    },
     gpinput(e) {
-      console.log(clickTab, "clickTab");
+      this.gpcode = e.target.value;
+      this.$refs.tabsList.sousuo = e.target.value;
     },
   },
 };
@@ -51,7 +56,7 @@
   justify-content: center;
   margin: 15px 22px;
   position: relative;
-  z-index: 3000;
+  z-index: 99;
 
   .search_content {
     width: 100%;
@@ -93,7 +98,7 @@
     text-align: center;
     height: 100%;
     border-radius: 0.5rem;
-    background-color: #0066ed;
+    background-color: #00f0ff;
     color: #ffffff;
     font-weight: bold;
     margin-left: 20px;

--
Gitblit v1.9.3