From ef2e2e3f9c6d37cc47b14ce0444fb75e6aa19dd1 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Wed, 27 Aug 2025 18:12:21 +0800
Subject: [PATCH] 零时提交

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

diff --git a/src/page/list/trading-list.vue b/src/page/list/trading-list.vue
index 7937f5d..4ee434a 100644
--- a/src/page/list/trading-list.vue
+++ b/src/page/list/trading-list.vue
@@ -1,6 +1,9 @@
 <template>
   <div>
     <!-- 搜索框 -->
+    <div class="pages_title">
+      <div class="pages_title_txt">{{$t('hj225')}}</div>
+    </div>
     <div class="search">
       <div class="search_content">
         <div class="left_search">
@@ -22,6 +25,7 @@
         <div class="right_search" @click="sousuo">{{ $t("Search") }}</div>
       </div>
     </div>
+
     <tabsList ref="tabsList" />
   </div>
 </template>
@@ -29,10 +33,11 @@
 <script>
 import tabsList from "./tradingList/tabs";
 export default {
+  name: "TradingList",
   components: { tabsList },
   data() {
     return {
-      gpcode: "",
+      gpcode: ""
     };
   },
   methods: {
@@ -41,12 +46,21 @@
     },
     gpinput(e) {
       this.gpcode = e.target.value;
-    },
-  },
+      this.$refs.tabsList.sousuo = e.target.value;
+    }
+  }
 };
 </script>
 
 <style scoped lang="less">
+  .pages_title_txt{
+    margin:  20px;
+    font-size: 25px;
+    color: #285F52;
+  }
+  .pages_title{
+    border-bottom: 1px solid #bebebe;
+  }
 .search {
   height: 1rem;
   display: flex;
@@ -96,10 +110,11 @@
     text-align: center;
     height: 100%;
     border-radius: 0.5rem;
-    background-color: #0066ed;
+    background-color: #185546;
     color: #ffffff;
     font-weight: bold;
     margin-left: 20px;
+    padding: 0 10px;
   }
 }
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.9.3