专题页面nav调整
This commit is contained in:
parent
f1cad19531
commit
63288736d4
@ -1,14 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-row class="wrapper">
|
<div class="wrapper">
|
||||||
<el-col style="margin-bottom: 1rem;">
|
|
||||||
<el-menu type="border-card" :default-active="currentTopic" style="margin-top: -2px;border: 0;" mode="horizontal"
|
<div style="background: white">
|
||||||
|
<el-menu type="border-card" :default-active="currentTopic"
|
||||||
|
style="width: 96%;margin: 0 auto" mode="horizontal"
|
||||||
@select="handleSelectTopic">
|
@select="handleSelectTopic">
|
||||||
<el-menu-item index="news">最新</el-menu-item>
|
<el-menu-item index="news">最新</el-menu-item>
|
||||||
<el-menu-item v-for="topic in topicNavs" :key="topic.idTopic" :index="topic.topicUri">{{ topic.topicTitle }}
|
<el-menu-item v-for="topic in topicNavs" :key="topic.idTopic" :index="topic.topicUri">{{ topic.topicTitle }}
|
||||||
</el-menu-item>
|
</el-menu-item>
|
||||||
</el-menu>
|
</el-menu>
|
||||||
</el-col>
|
</div>
|
||||||
</el-row>
|
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -28,6 +31,7 @@
|
|||||||
isFetching: state => state.topic.fetching
|
isFetching: state => state.topic.fetching
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
watch: {},
|
||||||
methods: {
|
methods: {
|
||||||
handleSelectTopic(item) {
|
handleSelectTopic(item) {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
|
@ -117,7 +117,7 @@ export default {
|
|||||||
proxy: [ //proxy配置
|
proxy: [ //proxy配置
|
||||||
['/api', {
|
['/api', {
|
||||||
target: apiConfig.BASE, //api请求路径
|
target: apiConfig.BASE, //api请求路径
|
||||||
pathRewrite: {'^/api': isDevMode ? '/api/v1' : '/api'} //重定向请求路径,防止路由、api路径的冲突
|
pathRewrite: {'^/api': isDevMode ? '/api' : '/api'} //重定向请求路径,防止路由、api路径的冲突
|
||||||
}],
|
}],
|
||||||
['/ws', {
|
['/ws', {
|
||||||
target: apiConfig.BASE //api请求路径
|
target: apiConfig.BASE //api请求路径
|
||||||
|
31738
package-lock.json
generated
Normal file
31738
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
|
|
||||||
<el-row style="margin-top: 20px;">
|
<el-row style="margin-top: 20px;">
|
||||||
<el-col style="margin-bottom: 1rem;">
|
<el-col style="margin-bottom: 1rem;">
|
||||||
<el-breadcrumb separator-class="el-icon-arrow-right">
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
||||||
@ -12,10 +10,8 @@
|
|||||||
<el-col style="margin: .5rem;">
|
<el-col style="margin: .5rem;">
|
||||||
<el-button size="small" @click="createTopic" plain>创建专题</el-button>
|
<el-button size="small" @click="createTopic" plain>创建专题</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
|
||||||
</el-row> <el-row :gutter="20">
|
|
||||||
<el-col :span="8" style="margin-bottom: .5rem;" v-for="topic in topics.list" :key="topic.idTopic">
|
<el-col :span="8" style="margin-bottom: .5rem;" v-for="topic in topics.list" :key="topic.idTopic">
|
||||||
<el-card shadow="never">
|
<el-card shadow="never">
|
||||||
<div class="card-body d-flex flex-column">
|
<div class="card-body d-flex flex-column">
|
||||||
|
Loading…
Reference in New Issue
Block a user