mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-21 05:26:44 +08:00
[NEW]保全-新建保全模块文件夹、页面,引入路由
This commit is contained in:
134
src/router/ebiz/preserve.js
Normal file
134
src/router/ebiz/preserve.js
Normal file
@@ -0,0 +1,134 @@
|
||||
//保全 定义相关组件
|
||||
const search = () => import('@/views/ebiz/preserve/Search')
|
||||
const imageUpload = () => import('@/views/ebiz/preserve/ImageUpload')
|
||||
const handleResult = () => import('@/views/ebiz/preserve/HandleResult')
|
||||
const submitResult = () => import('@/views/ebiz/preserve/SubmitResult')
|
||||
const policyList = () => import('@/views/ebiz/preserve/PolicyList')
|
||||
const renewalInfo = () => import('@/views/ebiz/preserve/RenewalInfo')
|
||||
const renewalConfirmation = () => import('@/views/ebiz/preserve/RenewalConfirmation')
|
||||
const contactInfo = () => import('@/views/ebiz/preserve/ContactInfo')
|
||||
const contactConfirmation = () => import('@/views/ebiz/preserve/ContactConfirmation')
|
||||
const beneficiaryInfo = () => import('@/views/ebiz/preserve/beneficiaryInfo')
|
||||
const beneficiaryConfirmation = () => import('@/views/ebiz/preserve/beneficiaryConfirmation')
|
||||
const surrenderInfo = () => import('@/views/ebiz/preserve/SurrenderInfo')
|
||||
const surrenderConfirmation = () => import('@/views/ebiz/preserve/SurrenderConfirmation')
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/preserve/search',
|
||||
name: 'search',
|
||||
component: search,
|
||||
meta: {
|
||||
title: '搜索客户',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/policyList',
|
||||
name: 'policyList',
|
||||
component: policyList,
|
||||
meta: {
|
||||
title: '选择保单',
|
||||
index: 2
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/contactInfo',
|
||||
name: 'contactInfo',
|
||||
component: contactInfo,
|
||||
meta: {
|
||||
title: '联系方式变更',
|
||||
index: 3
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/renewalInfo',
|
||||
name: 'renewalInfo',
|
||||
component: renewalInfo,
|
||||
meta: {
|
||||
title: '续期账号变更',
|
||||
index: 4
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/beneficiaryInfo',
|
||||
name: 'beneficiaryInfo',
|
||||
component: beneficiaryInfo,
|
||||
meta: {
|
||||
title: '受益人变更',
|
||||
index: 5
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/surrenderInfo',
|
||||
name: 'surrenderInfo',
|
||||
component: surrenderInfo,
|
||||
meta: {
|
||||
title: '退保',
|
||||
index: 6
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/imageUpload',
|
||||
name: 'imageUpload',
|
||||
component: imageUpload,
|
||||
meta: {
|
||||
title: '影像上传',
|
||||
index: 7
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/handleResult',
|
||||
name: 'handleResult',
|
||||
component: handleResult,
|
||||
meta: {
|
||||
title: '操作结果',
|
||||
index: 8
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/beneficiaryConfirmation',
|
||||
name: 'beneficiaryConfirmation',
|
||||
component: beneficiaryConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 9
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/renewalConfirmation',
|
||||
name: 'renewalConfirmation',
|
||||
component: renewalConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 10
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/contactConfirmation',
|
||||
name: 'contactConfirmation',
|
||||
component: contactConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 11
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/surrenderConfirmation',
|
||||
name: 'surrenderConfirmation',
|
||||
component: surrenderConfirmation,
|
||||
meta: {
|
||||
title: '保全代办确认',
|
||||
index: 12
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/preserve/submitResult',
|
||||
name: 'submitResult',
|
||||
component: submitResult,
|
||||
meta: {
|
||||
title: '提交结果',
|
||||
index: 13
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user