Merge branch 'feature/GFRS-221_入司审批' into release/20200225

# Conflicts:
#	src/views/ebiz/agentEenter/AgentEenterBasicFamily.vue
#	src/views/ebiz/agentEenter/AgentEenterBasicInfor.vue
#	src/views/ebiz/agentEenter/AgentEnterGuarantor.vue
#	src/views/ebiz/agentEenter/EntryProcess.vue
#	src/views/ebiz/agentEenter/SeeCause.vue
This commit is contained in:
ding.zhou
2020-02-25 18:49:44 +08:00
committed by 28CD73C051F645E8132835671423A23F
17 changed files with 928 additions and 287 deletions

View File

@@ -20,6 +20,11 @@ const agentEenterBasicHealth = () => import('@/views/ebiz/agentEenter/AgentEente
const agentEenterBasicSuccess = () => import('@/views/ebiz/agentEenter/AgentEenterBasicSuccess')
const ShareInfo = () => import('@/views/ebiz/agentEenter/share/ShareInfo')
const ShareInfoSuccess = () => import('@/views/ebiz/agentEenter/share/ShareInfoSuccess')
const ApproveList = () => import('@/views/ebiz/agentEenter/approve/ApproveList')
const BasicInfo = () => import('@/views/ebiz/agentEenter/approve/BasicInfo')
const ApproveInfo = () => import('@/views/ebiz/agentEenter/approve/ApproveInfo')
const SubmitSuccess = () => import('@/views/ebiz/agentEenter/approve/SubmitSuccess')
export default [
{
path: '/agentEenter/entryProcess',
@@ -209,5 +214,41 @@ export default [
title: '增员申请',
index: 1
}
},
{
path: '/agentEenter/approve/ApproveList',
name: 'ApproveList',
component: ApproveList,
meta: {
title: '增员审批列表',
index: 1
}
},
{
path: '/agentEenter/approve/BasicInfo/:baseId',
name: 'BasicInfo',
component: BasicInfo,
meta: {
title: '增员审批',
index: 1
}
},
{
path: '/agentEenter/approve/ApproveInfo/:baseId',
name: 'ApproveInfo',
component: ApproveInfo,
meta: {
title: '增员审批',
index: 1
}
},
{
path: '/agentEenter/approve/SubmitSuccess',
name: 'SubmitSuccess',
component: SubmitSuccess,
meta: {
title: '提交成功',
index: 1
}
}
]