routes.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /**
  2. * @name umi 的路由配置
  3. * @description 只支持 path,component,routes,redirect,wrappers,name,icon 的配置
  4. * @param path path 只支持两种占位符配置,第一种是动态参数 :id 的形式,第二种是 * 通配符,通配符只能出现路由字符串的最后。
  5. * @param component 配置 location 和 path 匹配后用于渲染的 React 组件路径。可以是绝对路径,也可以是相对路径,如果是相对路径,会从 src/pages 开始找起。
  6. * @param routes 配置子路由,通常在需要为多个路径增加 layout 组件时使用。
  7. * @param redirect 配置路由跳转
  8. * @param wrappers 配置路由组件的包装组件,通过包装组件可以为当前的路由组件组合进更多的功能。 比如,可以用于路由级别的权限校验
  9. * @param name 配置路由的标题,默认读取国际化文件 menu.ts 中 menu.xxxx 的值,如配置 name 为 login,则读取 menu.ts 中 menu.login 的取值作为标题
  10. * @param icon 配置路由的图标,取值参考 https://ant.design/components/icon-cn, 注意去除风格后缀和大小写,如想要配置图标为 <StepBackwardOutlined /> 则取值应为 stepBackward 或 StepBackward,如想要配置图标为 <UserOutlined /> 则取值应为 user 或者 User
  11. * @doc https://umijs.org/docs/guides/routes
  12. */
  13. export default [
  14. {
  15. name: '赛事管理',
  16. path: '/match',
  17. locale: false,
  18. routes: [
  19. {
  20. name: '足球赛事',
  21. path: '/match/football',
  22. component: './Match/Football',
  23. locale: false,
  24. },
  25. {
  26. name: '篮球赛事',
  27. path: '/match/basketball',
  28. component: './Match/Basketball',
  29. locale: false,
  30. },
  31. ],
  32. },
  33. {
  34. name: '预测管理',
  35. locale: false,
  36. path: '/prediction',
  37. component: './Prediction',
  38. },
  39. {
  40. name: '用户管理',
  41. locale: false,
  42. path: '/user-manager',
  43. component: './User',
  44. },
  45. {
  46. name: '积分历史',
  47. locale: false,
  48. path: '/points-manager',
  49. component: './Points',
  50. },
  51. {
  52. path: '/exchange',
  53. name: '积分兑换',
  54. locale: false,
  55. routes: [
  56. {
  57. path: '/exchange/items',
  58. name: '兑换项目',
  59. locale: false,
  60. component: './ExchangeItem',
  61. },
  62. {
  63. path: '/exchange/history',
  64. name: '兑换记录',
  65. locale: false,
  66. component: './ExchangeHistory',
  67. },
  68. ],
  69. },
  70. {
  71. name: '活动管理',
  72. locale: false,
  73. path: '/activity',
  74. routes: [
  75. {
  76. name: '活动公告',
  77. locale: false,
  78. path: '/activity/announcements',
  79. component: './Activity',
  80. },
  81. {
  82. name: '最新活动',
  83. locale: false,
  84. path: '/activity/new-activities',
  85. component: './NewActivities',
  86. },
  87. ],
  88. },
  89. {
  90. path: '/user',
  91. layout: false,
  92. routes: [
  93. {
  94. name: 'login',
  95. path: '/user/login',
  96. component: './User/Login',
  97. },
  98. ],
  99. },
  100. {
  101. path: '/',
  102. redirect: '/match/football',
  103. },
  104. {
  105. path: '*',
  106. layout: false,
  107. component: './404',
  108. },
  109. ];