statistics-manage.js 882 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * 统计报表
  3. * @Author: zouwf
  4. * @Date: 2020-03-31
  5. * @Project jz
  6. */
  7. import Layout from '@/pages/layout/layout';
  8. const componentsRouter = {
  9. path: '/statistics-manage',
  10. component: Layout,
  11. meta: { title: '统计报表', icon: 'icon-statistics', noCache: true, permission: ['YHGLPT_TJBB'] },
  12. children: [
  13. {
  14. path: 'index',
  15. component: () => import('@/pages/log-manage/auth-behavior-statistic'),
  16. name: 'auth-behavior-statistic',
  17. meta: { title: '鉴权行为统计', icon: 'el-icon-goods', noCache: true, permission: ['QXGL_RZGL_JQXWTJ'] }
  18. },
  19. {
  20. path: 'role-authorization',
  21. component: () => import('@/pages/statistics-manage/role-authorization'),
  22. name: 'role-authorization',
  23. meta: { title: '角色授权情况', noCache: false, permission: ['YHGLPT_TJBB_JSSQQK'] }
  24. }
  25. ]
  26. };
  27. export default componentsRouter;