mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 18:06:44 +08:00
65 lines
1.4 KiB
JavaScript
65 lines
1.4 KiB
JavaScript
//数据报表 定义相关组件
|
|
const GBC_home = () => import('@/views/GBC/home')
|
|
const GBC_projectList = () => import('@/views/GBC/projectList')
|
|
const GBC_projectDetail = () => import('@/views/GBC/projectDetail')
|
|
const GBC_customerDetail = () => import('@/views/GBC/customerDetail')
|
|
const GBC_InsuredInfo = () => import('@/views/GBC/InsuredInfo')
|
|
const GBC_submitResult = () => import('@/views/GBC/submitResult')
|
|
|
|
export default [
|
|
{
|
|
path: '/GBC/home',
|
|
name: 'GBC_home',
|
|
component: GBC_home,
|
|
meta: {
|
|
title: '首页',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/GBC/projectList',
|
|
name: 'GBC_projectList',
|
|
component: GBC_projectList,
|
|
meta: {
|
|
title: '项目列表',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/GBC/projectDetail',
|
|
name: 'GBC_projectDetail',
|
|
component: GBC_projectDetail,
|
|
meta: {
|
|
title: '项目详情',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/GBC/customerDetail',
|
|
name: 'GBC_customerDetail',
|
|
component: GBC_customerDetail,
|
|
meta: {
|
|
title: '编辑客户信息',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/GBC/InsuredInfo',
|
|
name: 'GBC_InsuredInfo',
|
|
component: GBC_InsuredInfo,
|
|
meta: {
|
|
title: '信息录入',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/GBC/submitResult',
|
|
name: 'GBC_submitResult',
|
|
component: GBC_submitResult,
|
|
meta: {
|
|
title: '提交结果',
|
|
index: 1
|
|
}
|
|
},
|
|
]
|