system.js 975 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import LayoutIndex from '@/layout/Index.vue'
  2. export default[
  3. {
  4. path:'/system',
  5. component:LayoutIndex,
  6. name:'SystemIndex',
  7. meta:{
  8. title:'系统设置'
  9. },
  10. children:[
  11. {
  12. path:'userList',
  13. component:()=>import('@/views/system/userList/Index.vue'),
  14. name:"SystemUserList",
  15. meta:{
  16. title:'用户列表'
  17. },
  18. },
  19. {
  20. path:'roleList',
  21. component:()=>import('@/views/system/RoleList.vue'),
  22. name:"SystemRoleList",
  23. meta:{
  24. title:'角色管理'
  25. },
  26. },
  27. {
  28. path:'authSet',
  29. component:()=>import('@/views/system/AuthSet.vue'),
  30. name:"SystemAuthSet",
  31. meta:{
  32. title:'权限管理'
  33. },
  34. },
  35. {
  36. path:'resetPwd',
  37. component:()=>import('@/views/system/ResetPwd.vue'),
  38. name:"SystemResetPwd",
  39. meta:{
  40. title:'修改密码'
  41. },
  42. }
  43. ]
  44. }
  45. ]