index.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. export const hzybRoutes=[
  2. {
  3. path:'/ficcReportDetail',
  4. name:"hzybReportDetail",
  5. component: () => import("@/views/hzyb/activity/reportDetail.vue"),
  6. },
  7. // 研报活动模块
  8. {
  9. path:"/hzyb/activity",
  10. name:"hzybActivity",
  11. component: () => import("@/App.vue"),
  12. children: [
  13. {
  14. path:"report/week/detail",
  15. name:"hzybReportWeekDetail",
  16. component: () => import("@/views/hzyb/activity/reportWeekDetail.vue"),
  17. }
  18. ]
  19. },
  20. // 图库模块
  21. {
  22. path:"/hzyb/chart",
  23. name:"hzybChart",
  24. component: () => import("@/App.vue"),
  25. children: [
  26. {
  27. path:"detail",
  28. name:"hzybChartDetail",
  29. component: () => import("@/views/hzyb/chart/Detail.vue"),
  30. },
  31. {
  32. path:"search",
  33. name:'hzybChartSearch',
  34. component: () => import("@/views/hzyb/chart/Search.vue")
  35. }
  36. ]
  37. },
  38. // 报告模块
  39. {
  40. path:'/hzyb/report',
  41. name:'hzybReport',
  42. component: () => import("@/App.vue"),
  43. children:[
  44. {
  45. path:"detail",
  46. name:"hzybReportDetail",
  47. component: () => import("@/views/hzyb/report/Detail.vue"),
  48. },
  49. {
  50. path:"chapterdetail",
  51. name:"hzybChapterDetail",
  52. component: () => import("@/views/hzyb/report/ChapterDetail.vue"),
  53. },
  54. ]
  55. }
  56. ]