From f141226b9c4c580a1844b263f8e1440d73719207 Mon Sep 17 00:00:00 2001 From: 康凯 <9691949+kang-kai-SJZ@user.noreply.gitee.com> Date: Mon, 24 Jan 2022 16:05:53 +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