从 shccd159 合并 backend-adminend 子项目到 main
Made-with: Cursor
This commit is contained in:
50
backend-adminend/src/router/modules/user.js
Normal file
50
backend-adminend/src/router/modules/user.js
Normal file
@@ -0,0 +1,50 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
import Layout from '@/layout';
|
||||
|
||||
const userRouter = {
|
||||
path: '/user',
|
||||
component: Layout,
|
||||
redirect: '/user/index',
|
||||
name: 'User',
|
||||
meta: {
|
||||
title: '用户',
|
||||
icon: 'clipboard',
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'index',
|
||||
component: () => import('@/views/user/list/index'),
|
||||
name: 'UserIndex',
|
||||
meta: { title: '用户管理', icon: '' },
|
||||
},
|
||||
{
|
||||
path: 'grade',
|
||||
component: () => import('@/views/user/grade/index'),
|
||||
name: 'Grade',
|
||||
meta: { title: '用户等级', icon: '' },
|
||||
},
|
||||
{
|
||||
path: 'label',
|
||||
component: () => import('@/views/user/group/index'),
|
||||
name: 'Label',
|
||||
meta: { title: '用户标签', icon: '' },
|
||||
},
|
||||
{
|
||||
path: 'group',
|
||||
component: () => import('@/views/user/group/index'),
|
||||
name: 'Group',
|
||||
meta: { title: '用户分组', icon: '' },
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export default userRouter;
|
||||
Reference in New Issue
Block a user