mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 08:36:44 +08:00
25 lines
503 B
JavaScript
25 lines
503 B
JavaScript
//数据报表 定义相关组件
|
|
const reportList = () => import('@/views/ebiz/report/reportList')
|
|
const reportDetail = () => import('@/views/ebiz/report/reportDetail')
|
|
|
|
export default [
|
|
{
|
|
path: '/report/reportList',
|
|
name: 'reportList',
|
|
component: reportList,
|
|
meta: {
|
|
title: '数据报表',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/report/reportDetail',
|
|
name: 'reportDetail',
|
|
component: reportDetail,
|
|
meta: {
|
|
title: '个险渠道',
|
|
index: 1
|
|
}
|
|
}
|
|
]
|