mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 03:26:45 +08:00
83 lines
1.9 KiB
JavaScript
83 lines
1.9 KiB
JavaScript
const list = () => import('@/views/ebiz/renewalManage/List')
|
|
const customerList = () => import('@/views/ebiz/renewalManage/customerList')
|
|
const policyList = () => import('@/views/ebiz/renewalManage/policyList')
|
|
const detail = () => import('@/views/ebiz/renewalManage/Detail')
|
|
const policyDetail = () => import('@/views/ebiz/renewalManage/policyDetail')
|
|
const msgTemplate = () => import('@/views/ebiz/renewalManage/MsgTemplate')
|
|
const shortPolicyList = () => import('@/views/ebiz/renewalManage/shortPolicyList')
|
|
const shortPolicyDetail = () => import('@/views/ebiz/renewalManage/shortPolicyDetail')
|
|
export default [
|
|
{
|
|
path: '/renewalManage/list',
|
|
name: 'renewalManageList',
|
|
component: list,
|
|
meta: {
|
|
title: '续期管理',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/customerList',
|
|
name: 'customerList',
|
|
component: customerList,
|
|
meta: {
|
|
title: '客户清单',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/policyList',
|
|
name: 'policyList',
|
|
component: policyList,
|
|
meta: {
|
|
title: '保单列表',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/policyDetail',
|
|
name: 'policyDetail',
|
|
component: policyDetail,
|
|
meta: {
|
|
title: '保单详情',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/shortPolicyList',
|
|
name: 'shortPolicyList',
|
|
component: shortPolicyList,
|
|
meta: {
|
|
title: '短险保单列表',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/shortPolicyDetail',
|
|
name: 'shortPolicyDetail',
|
|
component: shortPolicyDetail,
|
|
meta: {
|
|
title: '保单详情',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/detail/:contNo/:payToDate/:payFlag',
|
|
name: 'renewalManageDetail',
|
|
component: detail,
|
|
meta: {
|
|
title: '续期扣款详情',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/renewalManage/msgTemplate',
|
|
name: 'msgTemplate',
|
|
component: msgTemplate,
|
|
meta: {
|
|
title: '短信模板',
|
|
index: 1
|
|
}
|
|
}
|
|
]
|