export type LayoutType = "vertical" | "classic" | "transverse" | "columns";
|
export type ScreenStyleType = "light" | "dark" | "blue";
|
|
export type AssemblySizeType = "large" | "default" | "small";
|
|
export type LanguageType = "zh" | "en" | null;
|
|
/* GlobalState */
|
export interface GlobalState {
|
layout: LayoutType;
|
assemblySize: AssemblySizeType;
|
language: LanguageType;
|
maximize: boolean;
|
primary: string;
|
isDark: boolean;
|
isGrey: boolean;
|
isWeak: boolean;
|
asideInverted: boolean;
|
headerInverted: boolean;
|
isCollapse: boolean;
|
accordion: boolean;
|
watermark: boolean;
|
breadcrumb: boolean;
|
breadcrumbIcon: boolean;
|
tabs: boolean;
|
tabsIcon: boolean;
|
footer: boolean;
|
screenStyle: ScreenStyleType;
|
}
|
|
/* UserState */
|
export interface UserState {
|
token: string;
|
userInfo: { name: string };
|
}
|
|
/* tabsMenuProps */
|
export interface TabsMenuProps {
|
icon: string;
|
title: string;
|
path: string;
|
name: string;
|
close: boolean;
|
isKeepAlive: boolean;
|
}
|
|
/* TabsState */
|
export interface TabsState {
|
tabsMenuList: TabsMenuProps[];
|
}
|
|
/* AuthState */
|
export interface AuthState {
|
routeName: string;
|
authButtonList: {
|
[key: string]: string[];
|
};
|
authMenuList: Menu.MenuOptions[];
|
}
|
|
/* KeepAliveState */
|
export interface KeepAliveState {
|
keepAliveName: string[];
|
}
|