添加活动量管理页面也功能

This commit is contained in:
史旭文
2020-03-13 18:16:29 +08:00
parent 712e3aee08
commit a9f74d2ad8
11 changed files with 389 additions and 34 deletions

View File

@@ -5,6 +5,11 @@ const Navigation = () => import('@/views/ebiz/manpower/Navigation')
const Training = () => import('@/views/ebiz/manpower/Training')
const ActiveManagement = () => import('@/views/ebiz/manpower/ActiveManagement')
const ActivityLogList = () => import('@/views/ebiz/manpower/activityLog/List')
const ActivityLogEdit = () => import('@/views/ebiz/manpower/activityLog/Edit')
export default [
{
// 人力发展
@@ -35,5 +40,25 @@ export default [
title: '活动量管理',
index: 100
}
},
{
// 当日增员活动日志
path: '/manpower/ActivityLog/List',
name: 'ActivityLogList',
component: ActivityLogList,
meta: {
title: '当日增员活动日志',
index: 100
}
},
{
// 日志详情
path: '/manpower/ActivityLog/Edit',
name: 'ActivityLogEdit',
component: ActivityLogEdit,
meta: {
title: '日志详情',
index: 100
}
}
]