mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-14 05:26:45 +08:00
提交
This commit is contained in:
70
src/router/ebiz/common.js
Normal file
70
src/router/ebiz/common.js
Normal file
@@ -0,0 +1,70 @@
|
||||
//建议书 定义相关组件
|
||||
const selectedProduct = () => import('@/views/ebiz/common/SelectedProduct')
|
||||
const mainRiskList = () => import('@/views/ebiz/common/MainRiskList')
|
||||
const addRiskList = () => import('@/views/ebiz/common/AddRiskList')
|
||||
const calculatePremium = () => import('@/views/ebiz/common/CalculatePremium')
|
||||
const defalut = () => import('@/views/ebiz/common/Defalut')
|
||||
const companyIntroduce = () => import('@/views/ebiz/common/CompanyIntroduce')
|
||||
|
||||
export default [
|
||||
{
|
||||
//已选产品列表
|
||||
path: '/common/selectedProduct',
|
||||
name: 'SelectedProduct',
|
||||
component: selectedProduct,
|
||||
meta: {
|
||||
title: '已选产品列表',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
//主险列表
|
||||
path: '/common/mainRiskList',
|
||||
name: 'MainRiskList',
|
||||
component: mainRiskList,
|
||||
meta: {
|
||||
title: '主险选择列表',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
//附加险列表
|
||||
path: '/common/addRiskList',
|
||||
name: 'AddRiskList',
|
||||
component: addRiskList,
|
||||
meta: {
|
||||
title: '附加险选择列表',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
//计算保费
|
||||
path: '/common/calculatePremium',
|
||||
name: 'CalculatePremium',
|
||||
component: calculatePremium,
|
||||
meta: {
|
||||
title: '保费计算',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
//缺省页面
|
||||
path: '/common/defalut',
|
||||
name: 'Defalut',
|
||||
component: defalut,
|
||||
meta: {
|
||||
title: '敬请期待',
|
||||
index: 1
|
||||
}
|
||||
},
|
||||
{
|
||||
//缺省页面
|
||||
path: '/common/companyIntroduce',
|
||||
name: 'CompanyIntroduce',
|
||||
component: companyIntroduce,
|
||||
meta: {
|
||||
title: '关于国富',
|
||||
index: 1
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user