wip: system management sample page

This commit is contained in:
Vben
2021-03-03 22:52:25 +08:00
parent f79cae63d9
commit 9a1ba74920
31 changed files with 852 additions and 52 deletions

View File

@@ -18,7 +18,20 @@ const menu: MenuModule = {
type: 'warn',
},
},
{
path: 'role',
name: t('routes.demo.system.role'),
tag: {
content: 'new',
},
},
{
path: 'menu',
name: t('routes.demo.system.menu'),
tag: {
content: 'new',
},
},
{
path: 'dept',
name: t('routes.demo.system.dept'),

View File

@@ -22,6 +22,25 @@ const system: AppRouteModule = {
},
component: () => import('/@/views/demo/system/account/index.vue'),
},
{
path: 'role',
name: 'RoleManagement',
meta: {
title: t('routes.demo.system.role'),
ignoreKeepAlive: true,
},
component: () => import('/@/views/demo/system/role/index.vue'),
},
{
path: 'menu',
name: 'MenuManagement',
meta: {
title: t('routes.demo.system.menu'),
ignoreKeepAlive: true,
},
component: () => import('/@/views/demo/system/menu/index.vue'),
},
{
path: 'dept',
name: 'DeptManagement',