mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 01:06:45 +08:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
const performance = () => import(/* webpackChunkName: 'performance' */ '@/views/ebiz/performance/Performance')
|
|
const attendanceInfo = () => import(/* webpackChunkName: 'performance' */ '@/views/ebiz/performance/AttendanceInfo')
|
|
const PerformanceList = () => import(/* webpackChunkName: 'performance' */ '@/views/ebiz/performance/PerformanceList')
|
|
const PerformanceInfo = () => import(/* webpackChunkName: 'performance' */ '@/views/ebiz/performance/PerformanceInfo')
|
|
|
|
export default [
|
|
{
|
|
path: '/performance/Performance',
|
|
name: 'Performance',
|
|
component: performance,
|
|
meta: {
|
|
title: '个人业绩查询',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/performance/AttendanceInfo',
|
|
name: 'AttendanceInfo',
|
|
component: attendanceInfo,
|
|
meta: {
|
|
title: '个险业绩查询',
|
|
index: 3
|
|
}
|
|
},
|
|
{
|
|
path: '/performance/PerformanceList',
|
|
name: 'PerformanceList',
|
|
component: PerformanceList,
|
|
meta: {
|
|
title: '个险业绩查询',
|
|
index: 3
|
|
}
|
|
},
|
|
{
|
|
path: '/performance/PerformanceInfo',
|
|
name: 'PerformanceInfo',
|
|
component: PerformanceInfo,
|
|
meta: {
|
|
title: '个险业绩查询',
|
|
index: 4
|
|
}
|
|
}
|
|
]
|