123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- import { layout } from "@/app";
- /**
- * @name umi 的路由配置
- * @description 只支持 path,component,routes,redirect,wrappers,name,icon 的配置
- * @param path path 只支持两种占位符配置,第一种是动态参数 :id 的形式,第二种是 * 通配符,通配符只能出现路由字符串的最后。
- * @param component 配置 location 和 path 匹配后用于渲染的 React 组件路径。可以是绝对路径,也可以是相对路径,如果是相对路径,会从 src/pages 开始找起。
- * @param routes 配置子路由,通常在需要为多个路径增加 layout 组件时使用。
- * @param redirect 配置路由跳转
- * @param wrappers 配置路由组件的包装组件,通过包装组件可以为当前的路由组件组合进更多的功能。 比如,可以用于路由级别的权限校验
- * @param name 配置路由的标题,默认读取国际化文件 menu.ts 中 menu.xxxx 的值,如配置 name 为 login,则读取 menu.ts 中 menu.login 的取值作为标题
- * @param icon 配置路由的图标,取值参考 https://ant.design/components/icon-cn, 注意去除风格后缀和大小写,如想要配置图标为 <StepBackwardOutlined /> 则取值应为 stepBackward 或 StepBackward,如想要配置图标为 <UserOutlined /> 则取值应为 user 或者 User
- * @doc https://umijs.org/docs/guides/routes
- */
- export default [
- {
- path: '/ui',
- layout: false,
- routes: [
- {
- name: 'login',
- path: '/ui/login',
- component: './User/Login',
- },
- ],
- },
- {
- path: '/ui/welcome',
- name: 'welcome',
- icon: 'smile',
- component: './Welcome',
- },
- {
- path: '/admin',
- name: 'admin',
- icon: 'crown',
- access: 'canAdmin',
- routes: [
- {
- path: '/admin',
- redirect: '/admin/sub-page',
- },
- {
- path: '/admin/sub-page',
- name: 'sub-page',
- component: './Admin',
- },
- ],
- },
- {
- name: 'list.table-list',
- icon: 'table',
- path: '/list',
- layout: false,
- component: './TableList',
- },
- {
- path: '/',
- redirect: '/ui/welcome',
- },
- {
- path: '*',
- layout: false,
- component: './404',
- },
- {
- path: '/ui/gateway',
- name: 'gateway',
- routes: [
- {
- name: 'egress',
- path: '/ui/gateway/egress',
- routes: [
- {
- name: 'api',
- path: '/ui/gateway/egress/api',
- component: './egress/api/table',
- },
- {
- name: 'channel',
- path: '/ui/gateway/egress/channel',
- component: './egress/channel/table',
- },
- {
- name: 'api-loan-integration',
- path: '/ui/gateway/egress/loan-integration',
- component: './egress/loan/integration',
- hideInMenu: true,
- },
- ],
- },
- ],
- },
- {
- name: 'message',
- path: '/ui/message',
- routes: [
- {
- name: 'sms',
- path: '/ui/message/sms',
- routes: [
- {
- name: 'sms-signature',
- path: '/ui/message/sms/signature',
- component: './message/sms/signature/table',
- },
- {
- name: 'sms-template',
- path: '/ui/message/sms/template',
- component: './message/sms/template/table',
- },
- {
- name: 'sms-service',
- path: '/ui/message/sms/service',
- component: './message/sms/service/table',
- },
- {
- name: 'sms-platform',
- path: '/ui/message/sms/platform',
- component: './message/sms/platform/table',
- },
- {
- name: 'sms-channel',
- path: '/ui/message/sms/channel',
- component: './message/sms/channel/table',
- },
- ]
- }
- ]
- }
- ];
|