routes.tsx 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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/user',
  48. name: 'miniApp.user',
  49. icon: 'icon-zhanghaoguanli-wx',
  50. access: 'isShow',
  51. component: './MiniApp/MiniAppUser',
  52. },
  53. // 小说管理
  54. {
  55. path: '/miniApp/book',
  56. name: 'miniApp.book',
  57. icon: 'icon-xiaoshuo-wx',
  58. access: 'isShow',
  59. component: './MiniApp/BookManage',
  60. },
  61. // 小程序端管理
  62. {
  63. name: 'miniApp.appManage',
  64. icon: 'icon-xiaochengxu-wx',
  65. path: '/miniApp/moduleConfig',
  66. access: "isShow",
  67. component: './Admin',
  68. },
  69. // 书币充值模板
  70. {
  71. name: 'miniApp.payModuleConfig',
  72. icon: 'icon-taojinbi-wx',
  73. path: '/miniApp/payModuleConfig',
  74. access: "isShow",
  75. component: './MiniApp/ModuleConfig',
  76. },
  77. // 数据统计中心
  78. {
  79. name:"miniApp.dataManage",
  80. icon: 'icon-shuju-wx',
  81. path: '/miniApp/dataManage',
  82. access: "isShow",
  83. routes: [
  84. {
  85. path: '/miniApp/dataManage',
  86. redirect: '/miniApp/dataManage/payLog',
  87. },
  88. {
  89. path: '/miniApp/dataManage/payLog',
  90. name: "payLog",
  91. component: './MiniApp/PayLog',
  92. },
  93. {
  94. path: '/miniApp/dataManage/readLog',
  95. name: "readLog",
  96. component: './MiniApp/ReadLog',
  97. },
  98. {
  99. name: 'consume',
  100. path: '/miniApp/dataManage/consume',
  101. component: './MiniApp/Consume',
  102. }
  103. ],
  104. }
  105. ]
  106. export default [
  107. {
  108. path: '/user',
  109. layout: false,
  110. routes: [
  111. {
  112. name: 'login',
  113. path: '/user/login',
  114. component: './User/Login',
  115. },
  116. ],
  117. },
  118. {
  119. path: '/',
  120. redirect: '/distributor/wxMiniApp',
  121. },
  122. {
  123. path: '*',
  124. layout: false,
  125. component: './404',
  126. },
  127. ...newMenu
  128. ];