123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- export const routerArrays: Array<RouteConfigs> = [
- {
- path: "/welcome",
- parentPath: "/",
- meta: {
- title: "menus.hshome",
- icon: "home-filled"
- }
- }
- ];
- export type routeMetaType = {
- title?: string;
- icon?: string;
- showLink?: boolean;
- savedPosition?: boolean;
- auths?: Array<string>;
- };
- export type RouteConfigs = {
- path?: string;
- parentPath?: string;
- query?: object;
- params?: object;
- meta?: routeMetaType;
- children?: RouteConfigs[];
- name?: string;
- };
- export type multiTagsType = {
- tags: Array<RouteConfigs>;
- };
- export type tagsViewsType = {
- icon: string;
- text: string;
- divided: boolean;
- disabled: boolean;
- show: boolean;
- };
- export interface setType {
- sidebar: {
- opened: boolean;
- withoutAnimation: boolean;
- isClickCollapse: boolean;
- };
- device: string;
- fixedHeader: boolean;
- classes: {
- hideSidebar: boolean;
- openSidebar: boolean;
- withoutAnimation: boolean;
- mobile: boolean;
- };
- hideTabs: boolean;
- }
- export type childrenType = {
- path?: string;
- noShowingChildren?: boolean;
- children?: childrenType[];
- value: unknown;
- meta?: {
- icon?: string;
- title?: string;
- showParent?: boolean;
- extraIcon?: {
- svg?: boolean;
- name?: string;
- };
- };
- showTooltip?: boolean;
- parentId?: number;
- pathList?: number[];
- };
- export type themeColorsType = {
- color: string;
- themeColor: string;
- };
- export interface scrollbarDomType extends HTMLElement {
- wrap?: {
- offsetWidth: number;
- };
- }
|