Files
ebiz-h5/src/router/ebiz/preserve.js

328 lines
8.4 KiB
JavaScript

//保全 定义相关组件
//common公用页面
const Search = () => import('@/views/ebiz/preserve/common/Search')
const HandleResult = () => import('@/views/ebiz/preserve/common/HandleResult')
const SubmitResult = () => import('@/views/ebiz/preserve/common/SubmitResult')
const PolicyList = () => import('@/views/ebiz/preserve/common/PolicyList')
//PC 续期账户变更
const RenewalInfo = () => import('@/views/ebiz/preserve/pc/RenewalInfo')
const PcImageUpload = () => import('@/views/ebiz/preserve/pc/ImageUpload')
const RenewalConfirmation = () => import('@/views/ebiz/preserve/pc/RenewalConfirmation')
const AutopayAuthorization = () => import('@/views/ebiz/preserve/pc/AutopayAuthorization')
//BB 联系方式变更
const contactInfo = () => import('@/views/ebiz/preserve/bb/ContactInfo')
const contacAgreement = () => import('@/views/ebiz/preserve/bb/ContacAgreement')
const contactConfirmation = () => import('@/views/ebiz/preserve/bb/ContactConfirmation')
//BC 受益人变更
const BeneficiaryInfo = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfo')
const BcImageUpload = () => import('@/views/ebiz/preserve/bc/ImageUpload')
const BeneficiaryInfoAdd = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfoAdd')
const BeneficiaryInfoDetail = () => import('@/views/ebiz/preserve/bc/BeneficiaryInfoDetail')
const BeneficiaryConfirmation = () => import('@/views/ebiz/preserve/bc/BeneficiaryConfirmation')
//退保
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 CtImageUpload = () => import('@/views/ebiz/preserve/ct/ImageUpload')
//犹豫期退保
const WSurrenderInfo = () => import('@/views/ebiz/preserve/wt/WSurrenderInfo')
const WSurrenderConfirmation = () => import('@/views/ebiz/preserve/wt/WSurrenderConfirmation')
const WSurrenderTip = () => import('@/views/ebiz/preserve/wt/WSurrenderTip')
const WtImageUpload = () => import('@/views/ebiz/preserve/wt/ImageUpload')
//保全进度查询及详情页面
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/Progress',
name: 'Progress',
component: Progress,
meta: {
title: '保全进度查询',
index: 14
}
},
{
path: '/preserve/common/search',
name: 'Search',
component: Search,
meta: {
title: '搜索客户',
index: 1
}
},
{
path: '/preserve/common/handleResult',
name: 'HandleResult',
component: HandleResult,
meta: {
title: '操作结果',
index: 1
}
},
{
path: '/preserve/common/submitResult',
name: 'SubmitResult',
component: SubmitResult,
meta: {
title: '提交结果',
index: 1
}
},
{
path: '/preserve/common/policyList',
name: 'PolicyList',
component: PolicyList,
meta: {
title: '选择保单',
index: 1
}
},
// ---------------------续期账户变更------------------
{
path: '/preserve/pc/renewalInfo',
name: 'RenewalInfo',
component: RenewalInfo,
meta: {
title: '续期账号变更',
index: 1
}
},
{
path: '/preserve/pc/imageUpload',
name: 'PcImageUpload',
component: PcImageUpload,
meta: {
title: '影像资料上传',
index: 1
}
},
{
path: '/preserve/pc/renewalConfirmation',
name: 'RenewalConfirmation',
component: RenewalConfirmation,
meta: {
title: '保全代办确认',
index: 1
}
},
{
path: '/preserve/pc/autopayAuthorization',
name: 'AutopayAuthorization',
component: AutopayAuthorization,
meta: {
title: '签署自动转账授权书',
index: 12
}
},
// ---------------------联系方式变更------------------
{
path: '/preserve/bb/contactInfo',
name: 'contactInfo',
component: contactInfo,
meta: {
title: '联系方式变更',
index: 1
}
},
{
path: '/preserve/bb/contacAgreement',
name: 'contacAgreement',
component: contacAgreement,
meta: {
title: '联系方式变更协议',
index: 1
}
},
{
path: '/preserve/bb/contactConfirmation',
name: 'contactConfirmation',
component: contactConfirmation,
meta: {
title: '保全代办确认',
index: 1
}
},
// ---------------------受益人变更------------------
{
path: '/preserve/bc/beneficiaryInfo',
name: 'BeneficiaryInfo',
component: BeneficiaryInfo,
meta: {
title: '受益人变更',
index: 1
}
},
{
path: '/preserve/bc/beneficiaryInfoDetail',
name: 'BeneficiaryInfoDetail',
component: BeneficiaryInfoDetail,
meta: {
title: '指定受益人信息',
index: 1
}
},
{
path: '/preserve/bc/imageUpload',
name: 'BcImageUpload',
component: BcImageUpload,
meta: {
title: '影像资料上传',
index: 1
}
},
{
path: '/preserve/bc/beneficiaryConfirmation',
name: 'BeneficiaryConfirmation',
component: BeneficiaryConfirmation,
meta: {
title: '保全代办确认',
index: 1
}
},
{
path: '/preserve/bc/beneficiaryInfoAdd',
name: 'BeneficiaryInfoAdd',
component: BeneficiaryInfoAdd,
meta: {
title: '指定受益人信息',
index: 1
}
},
// ---------------------退保------------------
{
path: '/preserve/ct/surrenderInfo',
name: 'SurrenderInfo',
component: SurrenderInfo,
meta: {
title: '退保',
index: 1
}
},
{
path: '/preserve/ct/imageUpload',
name: 'CtImageUpload',
component: CtImageUpload,
meta: {
title: '影像资料上传',
index: 1
}
},
{
path: '/preserve/ct/surrenderTip',
name: 'SurrenderTip',
component: SurrenderTip,
meta: {
title: '退保协议',
index: 1
}
},
{
path: '/preserve/ct/surrenderConfirmation',
name: 'SurrenderConfirmation',
component: SurrenderConfirmation,
meta: {
title: '保全代办确认',
index: 1
}
},
// ---------------------犹豫期退保------------------
{
path: '/preserve/wt/wsurrenderInfo',
name: 'WSurrenderInfo',
component: WSurrenderInfo,
meta: {
title: '犹豫期退保',
index: 1
}
},
{
path: '/preserve/wt/imageUpload',
name: 'CtImageUpload',
component: WtImageUpload,
meta: {
title: '影像资料上传',
index: 1
}
},
{
path: '/preserve/wt/wsurrenderTip',
name: 'WSurrenderTip',
component: WSurrenderTip,
meta: {
title: '犹豫期退保协议',
index: 1
}
},
{
path: '/preserve/wt/wsurrenderConfirmation',
name: 'WSurrenderConfirmation',
component: WSurrenderConfirmation,
meta: {
title: '保全代办确认',
index: 1
}
},
//-----------------------保全进度详情页面------------------
{
path: '/preserve/detail/Contact/:surrenderId',
name: 'Contact',
component: Contact,
meta: {
title: '联系方式变更',
index: 1
}
},
{
path: '/preserve/detail/Beneficiary/:surrenderId',
name: 'Beneficiary',
component: Beneficiary,
meta: {
title: '受益人',
index: 1
}
},
{
path: '/preserve/detail/BeneficiaryInfo/:surrenderId',
name: 'BeneficiaryInfoD',
component: BeneficiaryInfoD,
meta: {
title: '指定受益人信息',
index: 1
}
},
{
path: '/preserve/detail/CoolingOffperiodSurrender/:surrenderId',
name: 'CoolingOffperiodSurrender',
component: CoolingOffperiodSurrender,
meta: {
title: '犹豫期退保',
index: 1
}
},
{
path: '/preserve/detail/Surrender/:surrenderId',
name: 'Surrender',
component: Surrender,
meta: {
title: '退保',
index: 1
}
},
{
path: '/preserve/detail/Renewal/:surrenderId',
name: 'Renewal',
component: Renewal,
meta: {
title: '续期账号变更',
index: 1
}
}
]