From d5f572496c5fb12fec2fe346b847bf58331299c9 Mon Sep 17 00:00:00 2001
From: YM <479443481@qq.com>
Date: 星期三, 17 七月 2024 15:56:51 +0800
Subject: [PATCH] 1

---
 src/pages/inherit/index.vue |   26 ++++++++++++++++++++++----
 1 files changed, 22 insertions(+), 4 deletions(-)

diff --git a/src/pages/inherit/index.vue b/src/pages/inherit/index.vue
index 998d145..ead04a9 100644
--- a/src/pages/inherit/index.vue
+++ b/src/pages/inherit/index.vue
@@ -3,7 +3,7 @@
     <headNav
       idIndex="2"
       :searchBg="false"
-      text="涓尰涓栧尰浼犳壙鏁版嵁搴�"
+      text="瀹跺浼犳壙"
       bg="/static/image/topBg1.png"
       bg1="/static/image/line1.png"
     />
@@ -42,8 +42,17 @@
           >鉁�</span
         >
         <button @click="search">鎼滅储</button>
+        <span
+          class="openSearch"
+          @click="
+            () => {
+              openSearch = !openSearch;
+            }
+          "
+          >楂樼骇鎼滅储{{ openSearch ? "鈭�" : "鈭�" }}</span
+        >
       </div>
-      <div class="dynasty">
+      <div class="dynasty" v-if="openSearch">
         <div style="font-weight: 700; line-height: 0.25rem">绛涢�夋湞浠�</div>
         <div class="filterList">
           <div
@@ -62,7 +71,7 @@
           </div>
         </div>
       </div>
-      <div class="condition">
+      <div class="condition"  v-if="openSearch">
         <div style="font-weight: 700; line-height: 0.25rem">鏉′欢閫夋嫨</div>
         <div class="filterList">
           <div class="conditionItem" @click="changeCondition(3)">
@@ -157,7 +166,8 @@
       toolTop: 0,
       toolLeft: 0,
       toolInfo: {},
-      totalCount: 0
+      totalCount: 0,
+      openSearch: false
     };
   },
   onLoad(options) {
@@ -497,6 +507,14 @@
   border-radius: 50px;
   margin-right: 10rpx;
 }
+
+.searchBox .openSearch {
+  position: absolute;
+  right: -100px;
+  font-size: 14px;
+  cursor: pointer;
+}
+
 .dynasty {
   display: flex;
   margin-top: 0.2rem;

--
Gitblit v1.9.1