menus.ts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. //模拟数据 实际不需要由api提供
  2. // 管乐团
  3. export const menus_gyt: menuType[] = [
  4. {
  5. path: "/homePage",
  6. component: "homePage",
  7. title: "首页",
  8. icon: "",
  9. meta: {
  10. routeType: "layout"
  11. },
  12. children: []
  13. },
  14. {
  15. path: "/cloudTextbooks",
  16. component: "cloudTextbooks",
  17. title: "云课堂",
  18. icon: "",
  19. meta: {
  20. routeType: "layout"
  21. },
  22. children: []
  23. },
  24. {
  25. path: "/coursewarePlay/:id",
  26. component: "coursewarePlay",
  27. title: "播放器",
  28. icon: "",
  29. meta: {
  30. routeType: "singlepage"
  31. },
  32. children: []
  33. },
  34. {
  35. path: "/curriculum",
  36. component: "curriculum",
  37. title: "课表",
  38. icon: "",
  39. meta: {
  40. routeType: "layout"
  41. },
  42. children: []
  43. },
  44. {
  45. path: "/cloudPractice",
  46. component: "cloudPractice",
  47. title: "云练习",
  48. icon: "",
  49. meta: {
  50. routeType: "layout"
  51. },
  52. children: []
  53. }
  54. ]
  55. // 管乐迷
  56. export const menus_gym: menuType[] = [
  57. {
  58. path: "/homePage",
  59. component: "homePage",
  60. title: "首页",
  61. icon: "",
  62. meta: {
  63. routeType: "layout"
  64. },
  65. children: []
  66. },
  67. {
  68. path: "/cloudTextbooks",
  69. component: "cloudTextbooks",
  70. title: "云课堂",
  71. icon: "",
  72. meta: {
  73. routeType: "layout"
  74. },
  75. children: []
  76. },
  77. {
  78. path: "/coursewarePlay/:id",
  79. component: "coursewarePlay",
  80. title: "播放器",
  81. icon: "",
  82. meta: {
  83. routeType: "singlepage"
  84. },
  85. children: []
  86. },
  87. {
  88. path: "/curriculum",
  89. component: "curriculum",
  90. title: "课表",
  91. icon: "",
  92. meta: {
  93. routeType: "layout"
  94. },
  95. children: []
  96. },
  97. {
  98. path: "/cloudPractice",
  99. component: "cloudPractice",
  100. title: "云练习",
  101. icon: "",
  102. meta: {
  103. routeType: "layout"
  104. },
  105. children: []
  106. }
  107. ]
  108. // 酷乐秀
  109. export const menus_klx: menuType[] = [
  110. {
  111. path: "/homePage",
  112. component: "homePage",
  113. title: "首页",
  114. icon: "",
  115. meta: {
  116. routeType: "layout"
  117. },
  118. children: []
  119. },
  120. {
  121. path: "/cloudTextbooks",
  122. component: "cloudTextbooks",
  123. title: "云课堂",
  124. icon: "",
  125. meta: {
  126. routeType: "layout"
  127. },
  128. children: []
  129. },
  130. {
  131. path: "/coursewarePlay/:id",
  132. component: "coursewarePlay",
  133. title: "播放器",
  134. icon: "",
  135. meta: {
  136. routeType: "singlepage"
  137. },
  138. children: []
  139. },
  140. {
  141. path: "/cloudPractice",
  142. component: "cloudPractice",
  143. title: "云练习",
  144. icon: "",
  145. meta: {
  146. routeType: "layout"
  147. },
  148. children: []
  149. }
  150. ]