mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 14:47:28 +08:00
feat: add dept management page
This commit is contained in:
@@ -11,6 +11,16 @@ const menu: MenuModule = {
|
||||
path: 'account',
|
||||
name: t('routes.demo.system.account'),
|
||||
},
|
||||
|
||||
{
|
||||
path: 'dept',
|
||||
name: t('routes.demo.system.dept'),
|
||||
},
|
||||
|
||||
{
|
||||
path: 'changePassword',
|
||||
name: t('routes.demo.system.password'),
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
@@ -15,12 +15,31 @@ const system: AppRouteModule = {
|
||||
children: [
|
||||
{
|
||||
path: 'account',
|
||||
name: 'Account',
|
||||
name: 'AccountManagement',
|
||||
meta: {
|
||||
title: t('routes.demo.system.account'),
|
||||
ignoreKeepAlive: true,
|
||||
},
|
||||
component: () => import('/@/views/demo/system/account/index.vue'),
|
||||
},
|
||||
{
|
||||
path: 'dept',
|
||||
name: 'DeptManagement',
|
||||
meta: {
|
||||
title: t('routes.demo.system.dept'),
|
||||
ignoreKeepAlive: true,
|
||||
},
|
||||
component: () => import('/@/views/demo/system/dept/index.vue'),
|
||||
},
|
||||
{
|
||||
path: 'changePassword',
|
||||
name: 'ChangePassword',
|
||||
meta: {
|
||||
title: t('routes.demo.system.password'),
|
||||
ignoreKeepAlive: true,
|
||||
},
|
||||
component: () => import('/@/views/demo/system/password/index.vue'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user