修改系统颜色方案,新增档案管理路由
This commit is contained in:
parent
ece529ec06
commit
ee19890838
|
@ -14,7 +14,7 @@
|
|||
|
||||
export default {
|
||||
navTheme: 'dark', // theme for nav menu
|
||||
primaryColor: '#5555ff', // primary color of ant design
|
||||
primaryColor: '#1890ff', // primary color of ant design
|
||||
layout: 'topmenu', // nav menu position: `sidemenu` or `topmenu`
|
||||
contentWidth: 'Fluid', // layout of content: `Fluid` or `Fixed`, only works when layout is topmenu
|
||||
fixedHeader: false, // sticky header
|
||||
|
|
|
@ -137,6 +137,21 @@ export const asyncRouterMap = [
|
|||
}
|
||||
]
|
||||
},
|
||||
// 档案管理
|
||||
{
|
||||
path: "/archives",
|
||||
redirect: "/archives/user",
|
||||
component: RouteView,
|
||||
meta: { title: '档案管理', icon: 'profile', permission: ['form'] },
|
||||
children: [
|
||||
{
|
||||
path: "/archives/user",
|
||||
name: "archivesUser",
|
||||
component: () => import('@/views/archives/user/Index'),
|
||||
meta: { title: '人员档案', keepAlive: true, permission: ['form'] }
|
||||
}
|
||||
]
|
||||
},
|
||||
// forms
|
||||
{
|
||||
path: '/form',
|
||||
|
|
Loading…
Reference in New Issue