mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-07 14:46:44 +08:00
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
// e起陪访
|
|
const VisitInfoRegister = () => import('@/views/ebiz/eqiVisit/VisitInfoRegister')
|
|
const RegisterResult = () => import('@/views/ebiz/eqiVisit/RegisterResult')
|
|
const NewcomerList = () => import('@/views/ebiz/eqiVisit/NewcomerList')
|
|
const ScoreRanking = () => import('@/views/ebiz/eqiVisit/ScoreRanking')
|
|
const VisitHistory = () => import('@/views/ebiz/eqiVisit/VisitHistory')
|
|
const HistoryDetail = () => import('@/views/ebiz/eqiVisit/HistoryDetail')
|
|
const ScoreHistory = () => import('@/views/ebiz/eqiVisit/ScoreHistory')
|
|
|
|
export default [
|
|
{
|
|
path: '/eqiVisit/visitInfoRegister',
|
|
name: 'VisitInfoRegister',
|
|
component: VisitInfoRegister,
|
|
meta: {
|
|
title: '陪访信息登记'
|
|
}
|
|
},
|
|
{
|
|
path: '/eqiVisit/registerResult',
|
|
name: 'RegisterResult',
|
|
component: RegisterResult,
|
|
meta: {
|
|
title: '提交结果'
|
|
}
|
|
},
|
|
{
|
|
path: '/eqiVisit/newcomerList',
|
|
name: 'NewcomerList',
|
|
component: NewcomerList,
|
|
meta: {
|
|
title: '选择陪访对象'
|
|
}
|
|
},
|
|
{
|
|
path: '/eqiVisit/scoreRanking',
|
|
name: 'ScoreRanking',
|
|
component: ScoreRanking,
|
|
meta: {
|
|
title: '月度积分榜'
|
|
}
|
|
},
|
|
{
|
|
path: '/eqiVisit/visitHistory',
|
|
name: 'VisitHistory',
|
|
component: VisitHistory,
|
|
meta: {
|
|
title: '陪访记录'
|
|
}
|
|
},
|
|
{
|
|
path: '/eqiVisit/historyDetail/:id',
|
|
name: 'VisitHistory',
|
|
component: HistoryDetail,
|
|
props: true,
|
|
meta: {
|
|
title: '陪访记录详情'
|
|
}
|
|
},
|
|
{
|
|
path: '/eqiVisit/scoreHistory',
|
|
name: 'ScoreHistory',
|
|
component: ScoreHistory,
|
|
meta: {
|
|
title: '查询积分'
|
|
}
|
|
}
|
|
]
|