12345678910111213141516171819202122232425262728 |
- /**
- * 统计报表
- * @Author: zouwf
- * @Date: 2020-03-31
- * @Project jz
- */
- import Layout from '@/pages/layout/layout';
- const componentsRouter = {
- path: '/statistics-manage',
- component: Layout,
- meta: { title: '统计报表', icon: 'icon-statistics', noCache: true, permission: ['YHGLPT_TJBB'] },
- children: [
- {
- path: 'index',
- component: () => import('@/pages/log-manage/auth-behavior-statistic'),
- name: 'auth-behavior-statistic',
- meta: { title: '鉴权行为统计', icon: 'el-icon-goods', noCache: true, permission: ['QXGL_RZGL_JQXWTJ'] }
- },
- {
- path: 'role-authorization',
- component: () => import('@/pages/statistics-manage/role-authorization'),
- name: 'role-authorization',
- meta: { title: '角色授权情况', noCache: false, permission: ['YHGLPT_TJBB_JSSQQK'] }
- }
- ]
- };
- export default componentsRouter;
|