Merge branch 'feature/GFRS-214【待确定】保全进度查询' into feature/【保全】

# Conflicts:
#	src/api/ebiz/preserve/preserve.js
#	src/config/preserve.js
#	src/config/urlMap.js
#	src/router/ebiz/preserve.js
#	src/views/ebiz/preserve/BeneficiaryInfoDetail.vue
#	src/views/ebiz/preserve/ImageUpload.vue
#	src/views/ebiz/preserve/RenewalConfirmation.vue
#	src/views/ebiz/preserve/RenewalInfo.vue
#	src/views/ebiz/preserve/Search.vue
#	src/views/ebiz/preserve/SurrenderConfirmation.vue
#	src/views/ebiz/preserve/SurrenderInfo.vue
#	src/views/ebiz/preserve/bb/ContacAgreement.vue
#	src/views/ebiz/preserve/bb/ContactConfirmation.vue
#	src/views/ebiz/preserve/bb/ContactInfo.vue
#	src/views/ebiz/preserve/bc/BeneficiaryInfo.vue
#	src/views/ebiz/preserve/bc/BeneficiaryInfoAdd.vue
#	src/views/ebiz/preserve/bc/BeneficiaryInfoDetail.vue
#	src/views/ebiz/preserve/common/HandleResult.vue
#	src/views/ebiz/preserve/common/PolicyList.vue
#	src/views/ebiz/preserve/detail/BeneficiaryInfo.vue
#	src/views/ebiz/preserve/js/data-dictionary.js
This commit is contained in:
yuweiqi
2020-06-04 10:26:16 +08:00
11 changed files with 1905 additions and 26 deletions

View File

@@ -18,6 +18,14 @@ const surrenderInfo = () => import('@/views/ebiz/preserve/ct/SurrenderInfo')
const surrenderConfirmation = () => import('@/views/ebiz/preserve/ct/SurrenderConfirmation')
const surrenderTip = () => import('@/views/ebiz/preserve/ct/SurrenderTip')
const Progress = () => import('@/views/ebiz/preserve/Progress')
const Contact = () => import('@/views/ebiz/preserve/detail/Contact')
const Beneficiary = () => import('@/views/ebiz/preserve/detail/Beneficiary')
const BeneficiaryInfoD = () => import('@/views/ebiz/preserve/detail/BeneficiaryInfo')
const Renewal = () => import('@/views/ebiz/preserve/detail/Renewal')
const CoolingOffperiodSurrender = () => import('@/views/ebiz/preserve/detail/CoolingOffperiodSurrender')
const Surrender = () => import('@/views/ebiz/preserve/detail/Surrender')
export default [
{
path: '/preserve/search',
@@ -180,5 +188,68 @@ export default [
title: '提交结果',
index: 13
}
},
{
path: '/preserve/Progress',
name: 'Progress',
component: Progress,
meta: {
title: '保全进度查询',
index: 14
}
},
{
path: '/preserve/detail/Contact/:surrenderId',
name: 'Contact',
component: Contact,
meta: {
title: '联系方式变更',
index: 15
}
},
{
path: '/preserve/detail/Beneficiary/:surrenderId',
name: 'Beneficiary',
component: Beneficiary,
meta: {
title: '受益人',
index: 16
}
},
{
path: '/preserve/detail/BeneficiaryInfo/:surrenderId',
name: 'BeneficiaryInfoD',
component: BeneficiaryInfoD,
meta: {
title: '指定受益人信息',
index: 17
}
},
{
path: '/preserve/detail/CoolingOffperiodSurrender/:surrenderId',
name: 'CoolingOffperiodSurrender',
component: CoolingOffperiodSurrender,
meta: {
title: '犹豫期退保',
index: 18
}
},
{
path: '/preserve/detail/Surrender/:surrenderId',
name: 'Surrender',
component: Surrender,
meta: {
title: '退保',
index: 19
}
},
{
path: '/preserve/detail/Renewal/:surrenderId',
name: 'Renewal',
component: Renewal,
meta: {
title: '续期账号变更',
index: 20
}
}
]