[FIX] 开门红数据报表

This commit is contained in:
wangmingzhe
2019-12-23 18:16:10 +08:00
parent 18685b94e0
commit c8515f6b1a
4 changed files with 453 additions and 1 deletions

24
src/router/ebiz/report.js Normal file
View File

@@ -0,0 +1,24 @@
//数据报表 定义相关组件
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
}
}
]