Merge branch 'feature/GFRS-454【0326】建议书优化2.0' into release/0415

# Conflicts:
#	src/assets/js/utils/data-dictionary.js
#	src/views/ebiz/proposal/Exhibition.vue
This commit is contained in:
阳华祥
2020-04-15 13:39:53 +08:00
26 changed files with 1712 additions and 9 deletions

View File

@@ -6,7 +6,8 @@ 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')
export default [
{
path: '/proposal/list',
@@ -43,7 +44,15 @@ export default [
index: 1
}
},
{
path: '/proposal/proposalInfo',
name: 'proposalInfo',
component: proposalInfo,
meta: {
title: '建议书预览',
index: 1
}
},
{
path: '/proposal/insuredPerson',
name: 'InsuredPerson',
@@ -68,5 +77,13 @@ export default [
meta: {
title: 'PDF预览'
}
},
{
path: '/proposal/caluePdf',
name: 'caluePdf',
component: caluePdf,
meta: {
title: '条款PDF查看'
}
}
]