From 2f8e6550cfc092b70d9e8ce65fb6d6c256e2d0ba Mon Sep 17 00:00:00 2001
From: 康凯 <kangk26@foxmail.com>
Date: Thu, 27 Jan 2022 11:47:23 +0800
Subject: [PATCH] 修复:列表下端导航栏对搜索筛选条件遮挡

---
 src/views/search/results.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/views/search/results.vue b/src/views/search/results.vue
index bcc0e4d..2756df9 100644
--- a/src/views/search/results.vue
+++ b/src/views/search/results.vue
@@ -2,10 +2,10 @@
   <div class="search-results">
     <div class="results-title">搜索结果</div>
     <div class="results-list">
-      <navbar ref="navbar" v-model="type">
+      <navbar ref="navbar" v-model="type">                
+        <tab-item id="3" data-type="3">红色景区</tab-item>
         <tab-item id="1" data-type="1">红色记忆</tab-item>
         <tab-item id="2" data-type="2">红色精神</tab-item>
-        <tab-item id="3" data-type="3">红色景区</tab-item>
         <tab-item id="4" data-type="4">红色人物</tab-item>
       </navbar>
       <tab-container v-model="type">
@@ -71,7 +71,7 @@
   components: {Navbar, TabItem, TabContainer, TabContainerItem},
   data() {
     return {
-      type: "1",
+      type: "3",
       searchItems: [],
     };
   },

--
Gitblit v1.9.3