咨询等功能完善1

This commit is contained in:
menxipeng
2025-08-15 19:32:46 +08:00
parent 37623bcab9
commit 38203873ff
10 changed files with 902 additions and 1 deletions

View File

@@ -0,0 +1,34 @@
// 咨询管理路由
export default {
path: '/consult',
component: 'Layout',
hidden: false,
redirect: 'noRedirect',
name: 'Consult',
meta: {
title: '咨询管理',
icon: 'documentation'
},
children: [
{
path: 'index',
component: 'consult/index',
name: 'ConsultList',
meta: { title: '咨询列表', icon: 'list' }
},
{
path: 'add',
component: 'consult/add',
name: 'ConsultAdd',
meta: { title: '添加文章', activeMenu: '/consult/index' },
hidden: true
},
{
path: 'add/:id',
component: 'consult/add',
name: 'ConsultEdit',
meta: { title: '编辑文章', activeMenu: '/consult/index' },
hidden: true
}
]
}