mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 15:46:43 +08:00
23 lines
520 B
JavaScript
23 lines
520 B
JavaScript
//电子投保 定义相关组件
|
|
const step1 = () => import('@/views/ebiz/YB_agentSign/step1')
|
|
const step2 = () => import('@/views/ebiz/YB_agentSign/step2')
|
|
let riskName = localStorage.riskName
|
|
export default [
|
|
{
|
|
path: '/YB_agentSign/step1',
|
|
name: 'step1',
|
|
component: step1,
|
|
meta: {
|
|
title: '银保代理人电子化合同签署'
|
|
}
|
|
},
|
|
{
|
|
path: '/YB_agentSign/step2',
|
|
name: 'step2',
|
|
component: step2,
|
|
meta: {
|
|
title: '银保代理人电子化合同签署'
|
|
}
|
|
},
|
|
]
|