report.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // 中文研报路由模块
  2. export const reportRoutes=[
  3. {
  4. path:"/report/preview",
  5. name:"ReportPreview",
  6. component: () => import("@/views/report/PreviewDetail.vue"),
  7. meta: {
  8. title: "中文研报",
  9. },
  10. },
  11. {
  12. path:"/report/dayweek/add",
  13. name:"ReportDayWeekAdd",
  14. component: () => import("@/views/report/ReportDayWeekAdd.vue"),
  15. meta: {
  16. title: "添加晨报/周报",
  17. },
  18. },
  19. {
  20. path:"/report/edit",
  21. name:"ReportEdit",
  22. component: () => import("@/views/report/EditReport.vue"),
  23. meta: {
  24. title: "编辑研报",
  25. },
  26. },
  27. {
  28. path:"/report/add",
  29. name:"ReportAdd",
  30. component: () => import("@/views/report/AddReport.vue"),
  31. meta: {
  32. title: "添加研报",
  33. },
  34. },
  35. {
  36. path:"/report/list",
  37. name:"ReportList",
  38. component: () => import("@/views/report/List.vue"),
  39. meta: {
  40. title: "中文研报",
  41. keepAlive:true,
  42. hasBackTop:true
  43. },
  44. },
  45. // {
  46. // path:"/report/detail",
  47. // name:"reportDetail",
  48. // component: () => import("@/views/report/Detail.vue"),
  49. // meta: {
  50. // title: "中文研报",
  51. // keepAlive:false,
  52. // hasBackTop:true
  53. // },
  54. // },
  55. {
  56. path:"/report/chapter/list",
  57. name:"ReportChapterList",
  58. component: () => import("@/views/report/chapter/List.vue"),
  59. meta: {
  60. title: "中文研报",
  61. keepAlive:false
  62. },
  63. },
  64. {
  65. path:"/report/chapter/detail",
  66. name:"ReportChapterDetail",
  67. component: () => import("@/views/report/chapter/Detail.vue"),
  68. meta: {
  69. title: "中文研报",
  70. keepAlive:false,
  71. hasBackTop:true
  72. },
  73. },
  74. {
  75. path:"/report/search",
  76. name:"ReportSearch",
  77. component: () => import("@/views/report/Search.vue"),
  78. meta: {
  79. title: "中文研报",
  80. keepAlive:true,
  81. hasBackTop:true
  82. },
  83. },
  84. {
  85. path:"/report/addReportInfo",
  86. name:"AddReportInfo",
  87. component: () => import("@/views/report/addReportInfo.vue"),
  88. meta: {
  89. title: "中文研报",
  90. keepAlive:true,
  91. hasBackTop:true
  92. },
  93. },
  94. ]