Files
integral-shop/backend-adminend/src/router/modules/user.js

57 lines
1.7 KiB
JavaScript
Raw Normal View History

// +----------------------------------------------------------------------
// | 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: '' },
},
{
path: 'integral',
component: () => import('@/views/user/integral/index'),
name: 'IntegralLog',
meta: { title: '积分日志', icon: '', noCache: true },
},
],
};
export default userRouter;