业绩查询功能

This commit is contained in:
huichao
2020-07-24 14:51:57 +08:00
parent 73e81e37fa
commit 68571f0ec3
14 changed files with 1132 additions and 287 deletions

View File

@@ -1,4 +1,6 @@
const performance = () => import('@/views/ebiz/performance/Performance')
const attendanceInfo = () => import('@/views/ebiz/performance/AttendanceInfo')
const PerformanceList = () => import('@/views/ebiz/performance/PerformanceList')
export default [
{
@@ -10,13 +12,31 @@ export default [
index: 1
}
},
// {
// path: '/poster/posterPreview',
// name: 'posterPreview',
// component: posterPreview,
// meta: {
// title: '海报预览',
// index: 2
// }
// }
{
path: '/performance/Performance/:parmas',
name: 'Performance',
component: performance,
meta: {
title: '业绩查询',
index: 1
}
},
{
path: '/performance/AttendanceInfo',
name: 'AttendanceInfo',
component: attendanceInfo,
meta: {
title: '考勤统计',
index: 3
}
},
{
path: '/performance/PerformanceList/:obj',
name: 'PerformanceList',
component: PerformanceList,
meta: {
title: '考勤统计',
index: 3
}
}
]