index.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. path: '/hzyb/pricedriven/detail',
  22. name: 'priceDriven',
  23. component: () => import ('@/views/hzyb/pricedriven/detail.vue')
  24. },
  25. // 图库模块
  26. {
  27. path:"/hzyb/chart",
  28. name:"hzybChart",
  29. component: () => import("@/App.vue"),
  30. children: [
  31. {
  32. path:"detail",
  33. name:"hzybChartDetail",
  34. component: () => import("@/views/hzyb/chart/Detail.vue"),
  35. },
  36. {
  37. path:"search",
  38. name:'hzybChartSearch',
  39. component: () => import("@/views/hzyb/chart/Search.vue")
  40. },
  41. {
  42. path:"positionanalysis",
  43. name:'hzybChartPositionAnalysis',
  44. component: () => import("@/views/hzyb/chart/positionAnalysis/Index.vue")
  45. }
  46. ]
  47. },
  48. // 报告模块
  49. {
  50. path:'/hzyb/report',
  51. name:'hzybReport',
  52. component: () => import("@/views/hzyb/Index.vue"),
  53. children:[
  54. {
  55. path:"detail",
  56. name:"hzybReportDetailNew",
  57. component: () => import("@/views/hzyb/report/Detail.vue"),
  58. },
  59. {
  60. path:"chapterdetail",
  61. name:"hzybChapterDetail",
  62. component: () => import("@/views/hzyb/report/ChapterDetail.vue"),
  63. },
  64. {
  65. path:"previewpdf",
  66. name:"hzybPreviewPDF",
  67. component:() => import("@/views/hzyb/report/PreviewPDF.vue")
  68. }
  69. ]
  70. }
  71. ]