types.ts 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. export const routerArrays: Array<RouteConfigs> = [
  2. {
  3. path: "/welcome",
  4. parentPath: "/",
  5. meta: {
  6. title: "menus.hshome",
  7. icon: "home-filled"
  8. }
  9. }
  10. ];
  11. export type routeMetaType = {
  12. title?: string;
  13. icon?: string;
  14. showLink?: boolean;
  15. savedPosition?: boolean;
  16. auths?: Array<string>;
  17. };
  18. export type RouteConfigs = {
  19. path?: string;
  20. parentPath?: string;
  21. query?: object;
  22. params?: object;
  23. meta?: routeMetaType;
  24. children?: RouteConfigs[];
  25. name?: string;
  26. };
  27. export type multiTagsType = {
  28. tags: Array<RouteConfigs>;
  29. };
  30. export type tagsViewsType = {
  31. icon: string;
  32. text: string;
  33. divided: boolean;
  34. disabled: boolean;
  35. show: boolean;
  36. };
  37. export interface setType {
  38. sidebar: {
  39. opened: boolean;
  40. withoutAnimation: boolean;
  41. isClickCollapse: boolean;
  42. };
  43. device: string;
  44. fixedHeader: boolean;
  45. classes: {
  46. hideSidebar: boolean;
  47. openSidebar: boolean;
  48. withoutAnimation: boolean;
  49. mobile: boolean;
  50. };
  51. hideTabs: boolean;
  52. }
  53. export type childrenType = {
  54. path?: string;
  55. noShowingChildren?: boolean;
  56. children?: childrenType[];
  57. value: unknown;
  58. meta?: {
  59. icon?: string;
  60. title?: string;
  61. showParent?: boolean;
  62. extraIcon?: {
  63. svg?: boolean;
  64. name?: string;
  65. };
  66. };
  67. showTooltip?: boolean;
  68. parentId?: number;
  69. pathList?: number[];
  70. };
  71. export type themeColorsType = {
  72. color: string;
  73. themeColor: string;
  74. };
  75. export interface scrollbarDomType extends HTMLElement {
  76. wrap?: {
  77. offsetWidth: number;
  78. };
  79. }