routes.tsx 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. const newMenu = [
  14. // 分销商页面
  15. {
  16. path: '/distributor',
  17. redirect: '/distributor/wxMiniApp',
  18. },
  19. {
  20. name: 'distributor.account',
  21. icon: 'icon-zhanghaoguanli',
  22. path: '/distributor/account',
  23. access: "isShow",
  24. component: './Distributor/Account',
  25. },
  26. {
  27. name: 'distributor.wxMiniApp',
  28. icon: 'icon-weixin',
  29. path: '/distributor/wxMiniApp',
  30. access: "isShow",
  31. component: './Distributor/WxMiniApp',
  32. },
  33. {
  34. name: 'distributor.dyMiniApp',
  35. icon: 'icon-douyinzhanghao',
  36. path: '/distributor/dyMiniApp',
  37. access: "isShow",
  38. component: './Distributor/DyMiniApp',
  39. },
  40. // 小程序页面
  41. {
  42. path: '/miniApp',
  43. redirect: '/miniApp/book',
  44. },
  45. // 小说管理
  46. {
  47. path: '/miniApp/book',
  48. name: 'miniApp.book',
  49. icon: 'icon-xiaoshuo-wx',
  50. access: 'isShow',
  51. routes: [
  52. {
  53. path: '/miniApp/book',
  54. redirect: '/miniApp/book/short',
  55. },
  56. {
  57. path: '/miniApp/book/short',
  58. name: "short",
  59. component: './MiniApp/BookManage/Short',
  60. },
  61. {
  62. path: '/miniApp/book/long',
  63. name: 'long',
  64. component: './MiniApp/BookManage/Long',
  65. },
  66. ],
  67. },
  68. // 阅读记录
  69. {
  70. path: '/miniApp/readLog',
  71. name: 'miniApp.readLog',
  72. icon: 'icon-yuedu-2-wx',
  73. access: 'isShow',
  74. routes: [
  75. {
  76. path: '/miniApp/readLog',
  77. redirect: '/miniApp/readLog/short',
  78. },
  79. {
  80. path: '/miniApp/readLog/short',
  81. name: "short",
  82. component: './MiniApp/ReadLog/Short',
  83. },
  84. {
  85. path: '/miniApp/readLog/long',
  86. name: 'long',
  87. component: './MiniApp/ReadLog/Long',
  88. },
  89. ],
  90. },
  91. // 充值记录
  92. {
  93. path: '/miniApp/payLog',
  94. name: 'miniApp.payLog',
  95. icon: 'icon-chongzhi01-wx',
  96. access: 'isShow',
  97. routes: [
  98. {
  99. path: '/miniApp/payLog',
  100. redirect: '/miniApp/payLog/short',
  101. },
  102. {
  103. path: '/miniApp/payLog/short',
  104. name: "short",
  105. component: './MiniApp/PayLog/Short',
  106. },
  107. {
  108. path: '/miniApp/payLog/long',
  109. name: 'long',
  110. component: './MiniApp/PayLog/Long',
  111. },
  112. ],
  113. },
  114. // 消费订单管理
  115. {
  116. name: 'miniApp.consume',
  117. icon: 'icon-xiaofei-wx',
  118. path: '/miniApp/consume',
  119. access: "isShow",
  120. component: './MiniApp/Consume',
  121. },
  122. // 小程序端管理
  123. {
  124. name: 'miniApp.appManage',
  125. icon: 'icon-xiaochengxu-wx',
  126. path: '/miniApp/moduleConfig',
  127. access: "isShow",
  128. component: './Admin',
  129. },
  130. // 书币充值模板
  131. {
  132. name: 'miniApp.payModuleConfig',
  133. icon: 'icon-taojinbi-wx',
  134. path: '/miniApp/payModuleConfig',
  135. access: "isShow",
  136. component: './MiniApp/ModuleConfig',
  137. },
  138. ]
  139. export default [
  140. {
  141. path: '/user',
  142. layout: false,
  143. routes: [
  144. {
  145. name: 'login',
  146. path: '/user/login',
  147. component: './User/Login',
  148. },
  149. ],
  150. },
  151. {
  152. path: '/',
  153. redirect: '/distributor/wxMiniApp',
  154. },
  155. {
  156. path: '*',
  157. layout: false,
  158. component: './404',
  159. },
  160. ...newMenu
  161. ];