index.js 635 B

12345678910111213141516171819202122232425262728
  1. /** When your routing table is too long, you can split it into small modules**/
  2. import Layout from '@/layout'
  3. const operationLogRouter = {
  4. path: '/operationLog',
  5. component: Layout,
  6. redirect: 'noRedirect',
  7. name: 'operationLog',
  8. meta: {
  9. title: '操作日志',
  10. icon: 'dingdanguanli'
  11. },
  12. alwaysShow: true,
  13. children: [
  14. {
  15. path: 'logManagement',
  16. name: 'logManagement',
  17. component: () => import('@/views/operationLog/logManagement'),
  18. meta: {
  19. title: '日志管理',
  20. icon: ''
  21. }
  22. }
  23. ]
  24. }
  25. export default operationLogRouter