1.  开发人力发展-个人中心页面,无逻辑处理,仅将页面结构搭建完成
2.  完成增员工具-导航入口 页面结构
3.  完成培训上岗-导航入口 页面结构。存一待解决问题
This commit is contained in:
tian.guangyuan
2020-03-12 17:48:32 +08:00
parent ffdf3d5e3c
commit 7004f6cf50
4 changed files with 227 additions and 4 deletions

View File

@@ -1,6 +1,10 @@
//人力发展 定义相关组件
const Navigation = () => import('@/views/ebiz/manpower/Navigation')
const PersonalCenter = () => import('@/views/ebiz/manpower/PersonalCenter')
const IncreaseStaffTools = () => import('@/views/ebiz/manpower/IncreaseStaffTools')
const Training = () => import('@/views/ebiz/manpower/Training')
@@ -16,6 +20,26 @@ export default [
index: 1
}
},
{
// 个人中心
path: '/manpower/PersonalCenter',
name: 'PersonalCenter',
component: PersonalCenter,
meta: {
title: '人力发展',
index: 2
}
},
{
// 增员工具
path: '/manpower/IncreaseStaffTools',
name: 'IncreaseStaffTools',
component: IncreaseStaffTools,
meta: {
title: '增员工具',
index: 3
}
},
{
// 培训上岗
path: '/manpower/Training',