You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

108 lines
4.1 KiB

  1. // 全局路由类型声明
  2. import type { RouteComponent, RouteLocationNormalized } from "vue-router";
  3. import type { FunctionalComponent } from "vue";
  4. declare global {
  5. interface ToRouteType extends RouteLocationNormalized {
  6. meta: CustomizeRouteMeta;
  7. }
  8. /**
  9. * @description `meta`
  10. */
  11. interface CustomizeRouteMeta {
  12. /** 菜单名称(兼容国际化、非国际化,如何用国际化的写法就必须在根目录的`locales`文件夹下对应添加) `必填` */
  13. title: string;
  14. /** 菜单图标 `可选` */
  15. icon?: string | FunctionalComponent | IconifyIcon;
  16. /** 菜单名称右侧的额外图标 */
  17. extraIcon?: string | FunctionalComponent | IconifyIcon;
  18. /** 是否在菜单中显示(默认`true`)`可选` */
  19. showLink?: boolean;
  20. /** 是否显示父级菜单 `可选` */
  21. showParent?: boolean;
  22. /** 页面级别权限设置 `可选` */
  23. roles?: Array<string>;
  24. /** 按钮级别权限设置 `可选` */
  25. auths?: Array<string>;
  26. /** 路由组件缓存(开启 `true`、关闭 `false`)`可选` */
  27. keepAlive?: boolean;
  28. /** 内嵌的`iframe`链接 `可选` */
  29. frameSrc?: string;
  30. /** `iframe`页是否开启首次加载动画(默认`true`)`可选` */
  31. frameLoading?: boolean;
  32. /** 页面加载动画(两种模式,第二种权重更高,第一种直接采用`vue`内置的`transitions`动画,第二种是使用`animate.css`编写进、离场动画,平台更推荐使用第二种模式,已经内置了`animate.css`,直接写对应的动画名即可)`可选` */
  33. transition?: {
  34. /**
  35. * @description
  36. * @see {@link https://next.router.vuejs.org/guide/advanced/transitions.html#transitions}
  37. * @see animate.css {@link https://animate.style}
  38. */
  39. name?: string;
  40. /** 进场动画 */
  41. enterTransition?: string;
  42. /** 离场动画 */
  43. leaveTransition?: string;
  44. };
  45. /** 当前菜单名称或自定义信息禁止添加到标签页(默认`false`) */
  46. hiddenTag?: boolean;
  47. /** 当前菜单名称是否固定显示在标签页且不可关闭(默认`false`) */
  48. fixedTag?: boolean;
  49. /** 动态路由可打开的最大数量 `可选` */
  50. dynamicLevel?: number;
  51. /**
  52. * `query``params``showLink: false`
  53. * `activePath``activePath``path`
  54. */
  55. activePath?: string;
  56. }
  57. /**
  58. * @description
  59. */
  60. interface RouteChildrenConfigsTable {
  61. /** 子路由地址 `必填` */
  62. path: string;
  63. /** 路由名字(对应不要重复,和当前组件的`name`保持一致)`必填` */
  64. name?: string;
  65. /** 路由重定向 `可选` */
  66. redirect?: string;
  67. /** 按需加载组件 `可选` */
  68. component?: RouteComponent;
  69. meta?: CustomizeRouteMeta;
  70. /** 子路由配置项 */
  71. children?: Array<RouteChildrenConfigsTable>;
  72. }
  73. /**
  74. * @description
  75. */
  76. interface RouteConfigsTable {
  77. /** 路由地址 `必填` */
  78. path: string;
  79. /** 路由名字(保持唯一)`可选` */
  80. name?: string;
  81. /** `Layout`组件 `可选` */
  82. component?: RouteComponent;
  83. /** 路由重定向 `可选` */
  84. redirect?: string;
  85. meta?: {
  86. /** 菜单名称(兼容国际化、非国际化,如何用国际化的写法就必须在根目录的`locales`文件夹下对应添加)`必填` */
  87. title: string;
  88. /** 菜单图标 `可选` */
  89. icon?: string | FunctionalComponent | IconifyIcon;
  90. /** 是否在菜单中显示(默认`true`)`可选` */
  91. showLink?: boolean;
  92. /** 菜单升序排序,值越高排的越后(只针对顶级路由)`可选` */
  93. rank?: number;
  94. };
  95. /** 子路由配置项 */
  96. children?: Array<RouteChildrenConfigsTable>;
  97. }
  98. }
  99. // https://router.vuejs.org/zh/guide/advanced/meta.html#typescript
  100. declare module "vue-router" {
  101. interface RouteMeta extends CustomizeRouteMeta {}
  102. }