information-routes.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. // 资料路由
  2. export const informationRoutes = [
  3. {
  4. path: "/information",
  5. meta: {
  6. title: "资料", // 页面标题title
  7. keepAlive: true,
  8. },
  9. component: () => import("@/views/information/index.vue"),
  10. children: [
  11. {
  12. path: "comment-on-my",
  13. component: () =>
  14. import("@/views/information/children/comment-on-my.vue"),
  15. meta: {
  16. title: "资料-评论我的", // 页面标题title
  17. },
  18. },
  19. {
  20. path: "reply-on-my",
  21. component: () => import("@/views/information/children/reply-on-my.vue"),
  22. meta: {
  23. title: "资料-回复我的", // 页面标题title
  24. },
  25. },
  26. {
  27. path: "like-on-my",
  28. component: () => import("@/views/information/children/like-on-my.vue"),
  29. meta: {
  30. title: "资料-点赞我的", // 页面标题title
  31. },
  32. },
  33. {
  34. path: "my-chasingFun",
  35. component: () =>
  36. import("@/views/information/children/my-chasingFun.vue"),
  37. meta: {
  38. title: "资料-我的订阅", // 页面标题title
  39. },
  40. },
  41. {
  42. path: "my-comment",
  43. component: () => import("@/views/information/children/my-comment.vue"),
  44. meta: {
  45. title: "资料-我的评论", // 页面标题title
  46. },
  47. },
  48. {
  49. path: "my-reply",
  50. component: () => import("@/views/information/children/my-reply.vue"),
  51. meta: {
  52. title: "资料-我的回复", // 页面标题title
  53. },
  54. },
  55. {
  56. path: "my-like",
  57. component: () => import("@/views/information/children/my-like.vue"),
  58. meta: {
  59. title: "资料-我的点赞", // 页面标题title
  60. },
  61. },
  62. {
  63. path: "my-release",
  64. component: () => import("@/views/information/children/my-release.vue"),
  65. meta: {
  66. title: "资料-我的发布", // 页面标题title
  67. },
  68. },
  69. {
  70. path: "my-collect",
  71. component: () => import("@/views/information/children/my-collect.vue"),
  72. meta: {
  73. title: "资料-我的收藏", // 页面标题title
  74. },
  75. },
  76. {
  77. path: "study-history",
  78. component: () =>
  79. import("@/views/information/children/study-history.vue"),
  80. meta: {
  81. title: "资料-学习历史", // 页面标题title
  82. },
  83. },
  84. ],
  85. },
  86. {
  87. path: "/information-collection",
  88. name: "information-collection",
  89. component: () => import("@/views/information/information-collection.vue"),
  90. meta: {
  91. title: "资料-资料合集", // 页面标题title
  92. keepAlive: true,
  93. },
  94. },
  95. {
  96. path: "/information-details",
  97. name: "information-details",
  98. component: () => import("@/views/information/information-details.vue"),
  99. meta: {
  100. title: "资料-资料详情", // 页面标题title
  101. empty: ["Navbar"],
  102. fill: true,
  103. keepAlive: true,
  104. children: true,
  105. },
  106. },
  107. {
  108. path: "/information-details-content",
  109. name: "information-details-content",
  110. component: () =>
  111. import("@/views/information/information-details-content.vue"),
  112. meta: {
  113. title: "资料-资料详情", // 页面标题title
  114. empty: ["Header", "Navbar"],
  115. fill: true,
  116. },
  117. },
  118. {
  119. path: "/information-contribute",
  120. name: "information-contribute",
  121. component: () => import("@/views/information/information-contribute.vue"),
  122. meta: {
  123. title: "资料-投稿资料", // 页面标题title
  124. },
  125. },
  126. ];