mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 05:16:44 +08:00
24 lines
650 B
JavaScript
24 lines
650 B
JavaScript
//健康险续保 定义相关组件
|
|
const healthInsuranceRenewalList = () => import('@/views/ebiz/healthInsuranceRenewal/list')
|
|
const healthInsuranceRenewalDetail = () => import('@/views/ebiz/healthInsuranceRenewal/detail')
|
|
export default [
|
|
{
|
|
path: '/healthInsuranceRenewal/list',
|
|
name: 'healthInsuranceRenewalList',
|
|
component: healthInsuranceRenewalList,
|
|
meta: {
|
|
title: '健康险续保清单',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/healthInsuranceRenewal/detail',
|
|
name: 'healthInsuranceRenewalDetail',
|
|
component: healthInsuranceRenewalDetail,
|
|
meta: {
|
|
title: '保单详情',
|
|
index: 1
|
|
}
|
|
}
|
|
]
|