mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-25 01:22:53 +08:00
入司初版
This commit is contained in:
173
src/router/ebiz/agentEenter.js
Normal file
173
src/router/ebiz/agentEenter.js
Normal file
@@ -0,0 +1,173 @@
|
||||
// 入司申请填写基本信息
|
||||
const signContract = () => import('@/views/ebiz/agentEenter/SignContract')
|
||||
const resumeSheet = () => import('@/views/ebiz/agentEenter/ResumeSheet')
|
||||
const healthNotice = () => import('@/views/ebiz/agentEenter/HealthNotice')
|
||||
const confirmation = () => import('@/views/ebiz/agentEenter/Confirmation')
|
||||
const paction = () => import('@/views/ebiz/agentEenter/Paction')
|
||||
const agentEenterResult = () => import('@/views/ebiz/agentEenter/Result')
|
||||
const entryProcess = () => import('@/views/ebiz/agentEenter/EntryProcess')
|
||||
const seeCause = () => import('@/views/ebiz/agentEenter/SeeCause')
|
||||
const ShowPDF = () => import('@/views/ebiz/agentEenter/ShowPDF')
|
||||
const agentEenterBasicInfor = () => import('@/views/ebiz/agentEenter/AgentEenterBasicInfor')
|
||||
const agentEnterGuarantor = () => import('@/views/ebiz/agentEenter/AgentEnterGuarantor')
|
||||
const agentEenterBasicFamily = () => import('@/views/ebiz/agentEenter/AgentEenterBasicFamily')
|
||||
const agentEenterBasicImage = () => import('@/views/ebiz/agentEenter/AgentEenterBasicImage')
|
||||
const agentEenterBasicHealth = () => import('@/views/ebiz/agentEenter/AgentEenterBasicHealth')
|
||||
const agentEenterBasicSuccess = () => import('@/views/ebiz/agentEenter/AgentEenterBasicSuccess')
|
||||
const ShareInfo = () => import('@/views/ebiz/agentEenter/share/ShareInfo')
|
||||
const ShareInfoSuccess = () => import('@/views/ebiz/agentEenter/share/ShareInfoSuccess')
|
||||
export default [
|
||||
{
|
||||
path: '/agentEenter/entryProcess',
|
||||
name: 'entryProcess',
|
||||
component: entryProcess,
|
||||
meta: {
|
||||
title: '入司流程总览',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/signContract',
|
||||
name: 'signContract',
|
||||
component: signContract,
|
||||
meta: {
|
||||
title: '入司签署信息',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/resumeSheet',
|
||||
name: 'resumeSheet',
|
||||
component: resumeSheet,
|
||||
meta: {
|
||||
title: '个险营销员履历表',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/healthNotice',
|
||||
name: 'healthNotice',
|
||||
component: healthNotice,
|
||||
meta: {
|
||||
title: '个险营销员健康告知书',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/confirmation',
|
||||
name: 'confirmation',
|
||||
component: confirmation,
|
||||
meta: {
|
||||
title: '重要事项确认书',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/paction',
|
||||
name: 'paction',
|
||||
component: paction,
|
||||
meta: {
|
||||
title: '个险销售人员代理合同',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/agentEenterResult',
|
||||
name: 'agentEenterResult',
|
||||
component: agentEenterResult,
|
||||
meta: {
|
||||
title: '电子合同',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/seeCause',
|
||||
name: 'seeCause',
|
||||
component: seeCause,
|
||||
meta: {
|
||||
title: '未通过原因',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/ShowPDF',
|
||||
name: 'ShowPDF',
|
||||
component: ShowPDF,
|
||||
meta: {
|
||||
title: '个险销售人员代理合同',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/agentEenterBasicInfor',
|
||||
name: 'agentEenterBasicInfor',
|
||||
component: agentEenterBasicInfor,
|
||||
meta: {
|
||||
title: '基本信息/推荐人信息',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/AgentEnterGuarantor',
|
||||
name: 'AgentEnterGuarantor',
|
||||
component: agentEnterGuarantor,
|
||||
meta: {
|
||||
title: '入司基本信息担保人',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/agentEenterBasicFamily',
|
||||
name: 'agentEenterBasicFamily',
|
||||
component: agentEenterBasicFamily,
|
||||
meta: {
|
||||
title: '家庭信息',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/agentEenterBasicImage',
|
||||
name: 'agentEenterBasicImage',
|
||||
component: agentEenterBasicImage,
|
||||
meta: {
|
||||
title: '影像资料',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/agentEenterBasicHealth',
|
||||
name: 'agentEenterBasicHealth',
|
||||
component: agentEenterBasicHealth,
|
||||
meta: {
|
||||
title: '健康告知',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/agentEenterBasicSuccess',
|
||||
name: 'agentEenterBasicSuccess',
|
||||
component: agentEenterBasicSuccess,
|
||||
meta: {
|
||||
title: '入司信息填写成功',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/ShareInfo',
|
||||
name: 'ShareInfo',
|
||||
component: ShareInfo,
|
||||
meta: {
|
||||
title: '入司申请',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/agentEenter/ShareInfoSuccess',
|
||||
name: 'ShareInfoSuccess',
|
||||
component: ShareInfoSuccess,
|
||||
meta: {
|
||||
title: '入司申请填写成功',
|
||||
index: 1
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user