Files
ebiz-h5/src/router/ebiz/proposal.js
2023-09-07 11:23:22 +08:00

112 lines
2.5 KiB
JavaScript

//建议书 定义相关组件
const list = () => import('@/views/ebiz/proposal/List')
const appnt = () => import('@/views/ebiz/proposal/Appnt')
const chooseInsuredPerson = () => import('@/views/ebiz/proposal/ChooseInsuredPerson')
const insuredPerson = () => import('@/views/ebiz/proposal/InsuredPerson')
const exhibition = () => import('@/views/ebiz/proposal/Exhibition')
const companyProfile = () => import('@/views/ebiz/proposal/CompanyProfile')
const pdf = () => import('@/views/ebiz/proposal/PDF')
const proposalInfo = () => import('@/views/ebiz/proposal/ProposalInfo')
const caluePdf = () => import('@/views/ebiz/proposal/CaluePDF')
const newAppnt = () => import('@/views/ebiz/proposal/NewAppnt')
const newInsuredPerson = () => import('@/views/ebiz/proposal/NewInsuredPerson')
export default [
{
path: '/proposal/list',
name: 'proposalList',
component: list,
meta: {
title: '建议书列表',
index: 1
}
},
{
path: '/proposal/appnt',
name: 'proposalAppnt',
component: appnt,
meta: {
title: '投保人信息',
index: 1
}
},
{
path: '/proposal/chooseInsuredPerson',
name: 'ChooseInsuredPerson',
component: chooseInsuredPerson,
meta: {
title: '选择被保险人'
}
},
{
path: '/proposal/exhibition',
name: 'proposalExhibition',
component: exhibition,
meta: {
title: '建议书演示',
index: 1
}
},
{
path: '/proposal/proposalInfo',
name: 'proposalInfo',
component: proposalInfo,
meta: {
title: '建议书预览',
index: 1
}
},
{
path: '/proposal/insuredPerson',
name: 'InsuredPerson',
component: insuredPerson,
meta: {
title: '被保险人信息',
index: 1
}
},
{
path: '/proposal/companyProfile',
name: 'companyProfile',
component: companyProfile,
meta: {
title: '公司简介'
}
},
{
path: '/proposal/pdf',
name: 'proposalPDF',
component: pdf,
meta: {
title: 'PDF预览'
}
},
{
path: '/proposal/caluePdf',
name: 'caluePdf',
component: caluePdf,
meta: {
//条款PDF查看
title: '条款'
}
},
{
path: '/proposal/newAppnt',
name: 'proposalnewAppnt',
component: newAppnt,
meta: {
title: '填写投保人信息',
index: 1
}
},
{
path: '/proposal/newInsuredPerson',
name: 'newInsuredPerson',
component: newInsuredPerson,
meta: {
title: '填写被保险人信息',
index: 1
}
},
]