a1300399510@qq.com 提交于 2023/03/29 -16:00:01
This commit is contained in:
parent
f0660d19d2
commit
64380a6e8d
@ -16,6 +16,7 @@ const Index = () => import('views/index')
|
||||
const Recommend = () => import('views/recommend/Recommend')
|
||||
const Collect = () => import('views/collect/Collect')
|
||||
const AllSections = () => import('views/allSections/AllSections')
|
||||
const SearchResult = () => import('views/searchResult/SearchResult')
|
||||
|
||||
const routes = [
|
||||
{
|
||||
@ -48,6 +49,14 @@ const routes = [
|
||||
meta: {
|
||||
title: "全部版块"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/searchResult',
|
||||
name: 'SearchResult',
|
||||
component: SearchResult,
|
||||
meta: {
|
||||
title: "搜索帖子"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -6,7 +6,7 @@
|
||||
@click="allClick(index)">{{ item.title }}</span>
|
||||
</div>
|
||||
<!-- 右选项 -->
|
||||
<div class="allSections-right" :class="{ 'active': index == allActive }" v-for="(item, index) in list" :key="index">
|
||||
<div class="allSections-right">
|
||||
<div class="allSections-right-item" v-for="(i, k) in starList" :key="k">
|
||||
<div class="item-content">
|
||||
<div class="item-title">{{ i.title }}</div>
|
||||
@ -178,7 +178,7 @@ export default {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
z-index: 1;
|
||||
display: none;
|
||||
// display: none;
|
||||
padding-bottom: 0.4rem;
|
||||
|
||||
&.active {
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
改好复工后复工后
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user