This commit is contained in:
邓晓坤
2019-09-12 16:22:38 +08:00
parent 90ea054ae0
commit ff8a261f79
195 changed files with 65268 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
//建议书 定义相关组件
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')
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/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预览'
}
}
]