From a874dd8b06b90ea5157e9809fcdf5a38ad115dde Mon Sep 17 00:00:00 2001
From: litian <2804272236@qq.com>
Date: 星期一, 30 六月 2025 18:03:51 +0800
Subject: [PATCH] tupian

---
 src/views/bookList/bookList.vue |   38 ++++++++++++++++++++++++++------------
 1 files changed, 26 insertions(+), 12 deletions(-)

diff --git a/src/views/bookList/bookList.vue b/src/views/bookList/bookList.vue
index eda7646..099aeb6 100644
--- a/src/views/bookList/bookList.vue
+++ b/src/views/bookList/bookList.vue
@@ -1,12 +1,17 @@
 <template>
   <div class="bookListBox">
     <div class="searchForm">
-      <van-search
-        v-model="searchAllWords"
-        placeholder="璇疯緭鍏ユ悳绱㈠叧閿瘝"
-        class="search"
-        @search="onSearch"
-      />
+      <div class="searchBox">
+        <div @click="onClickLeft">
+          <van-icon name="arrow-left" color="#2b68cd" />
+        </div>
+        <van-search
+          v-model="searchAllWords"
+          placeholder="璇疯緭鍏ユ悳绱㈠叧閿瘝"
+          class="search"
+          @search="onSearch"
+        />
+      </div>
       <div class="selectBox">
         <van-dropdown-menu class="classifySortBox">
           <van-dropdown-item
@@ -82,12 +87,12 @@
         </van-list>
       </van-pull-refresh>
     </div>
-    <Footer />
+    <!-- <Footer /> -->
   </div>
 </template>
 <script>
 import Vue from "vue";
-import Footer from "@/components/footer/footer";
+// import Footer from "@/components/footer/footer";
 import { Toast, Lazyload } from "vant";
 Vue.use(Lazyload);
 Vue.use(Toast);
@@ -99,7 +104,7 @@
     }
   },
   components: {
-    Footer
+    // Footer
     // backHeader
   },
   data() {
@@ -243,7 +248,7 @@
         storeInfo: this.config.digitalTextBooksGoodsStore,
         queryType: "*",
         coverSize: {
-          width: 180
+          height: 540
         },
         sort: {
           type: "Desc",
@@ -382,6 +387,9 @@
       } else {
         this.searchBarFixed = false;
       }
+    },
+    onClickLeft() {
+      this.$router.go(-1);
     }
   }
 };
@@ -396,10 +404,16 @@
   background-color: #e2f1fe;
   border-bottom: 3px solid #fff;
 }
+.searchBox {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  padding: 15px !important;
+}
 .search {
   background: none !important;
-  width: 100%;
-  padding: 15px !important;
+  width: 90%;
+  padding: 0 !important;
 }
 .selectBox {
   display: flex;

--
Gitblit v1.9.1