mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-12 12:36:43 +08:00
提交
This commit is contained in:
72
src/router/ebiz/proposal.js
Normal file
72
src/router/ebiz/proposal.js
Normal 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预览'
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user