Commit 580aa799 by lijiabin

【需求 23684】chore: 调整后台菜单展示顺序

parent 2c4b70c7
...@@ -23,7 +23,6 @@ export default defineComponent(() => { ...@@ -23,7 +23,6 @@ export default defineComponent(() => {
// { path: '/backend/videoManage', title: '视频管理' }, // { path: '/backend/videoManage', title: '视频管理' },
{ path: '/backend/caseManage', title: 'YAYA案例库管理' }, { path: '/backend/caseManage', title: 'YAYA案例库管理' },
// { path: '/backend/goodsManage', title: '积分商城——商品配置' }, // { path: '/backend/goodsManage', title: '积分商城——商品配置' },
{ path: '/backend/goodsDistribution', title: '商品分发' },
// 内容管理 // 内容管理
{ {
path: '/backend/contentsMenu', path: '/backend/contentsMenu',
...@@ -35,7 +34,16 @@ export default defineComponent(() => { ...@@ -35,7 +34,16 @@ export default defineComponent(() => {
{ path: '/backend/contentsMenu/questionManage', title: '问吧管理' }, { path: '/backend/contentsMenu/questionManage', title: '问吧管理' },
], ],
}, },
// 栏目管理
{
path: '/backend/columnsMenu',
title: '栏目管理',
children: [
{ path: '/backend/columnsMenu/columnManage', title: '专栏——栏目管理' },
{ path: '/backend/columnsMenu/interviewManage', title: '专访——栏目管理' },
{ path: '/backend/columnsMenu/videoManage', title: '视频——栏目管理' },
],
},
// 配置管理 // 配置管理
{ {
path: '/backend/settingsMenu', path: '/backend/settingsMenu',
...@@ -47,16 +55,7 @@ export default defineComponent(() => { ...@@ -47,16 +55,7 @@ export default defineComponent(() => {
{ path: '/backend/settingsMenu/luckyWheelManage', title: '转盘抽奖配置' }, { path: '/backend/settingsMenu/luckyWheelManage', title: '转盘抽奖配置' },
], ],
}, },
// 栏目管理 { path: '/backend/goodsDistribution', title: '商品分发' },
{
path: '/backend/columnsMenu',
title: '栏目管理',
children: [
{ path: '/backend/columnsMenu/columnManage', title: '专栏——栏目管理' },
{ path: '/backend/columnsMenu/interviewManage', title: '专访——栏目管理' },
{ path: '/backend/columnsMenu/videoManage', title: '视频——栏目管理' },
],
},
] ]
const activeMenu = computed(() => route.path) const activeMenu = computed(() => route.path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment