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.
24 lines
551 B
24 lines
551 B
/** |
|
* @program: kicc-ui |
|
* @description: pinia数据存储定义 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/10 |
|
*/ |
|
|
|
import { MenuModeEnum, MenuTypeEnum } from '/@/enums/menuEnum'; |
|
|
|
/** 锁屏信息 */ |
|
export interface LockInfo { |
|
// 要求输入密码 |
|
pwd?: string | undefined; |
|
// 是否被锁定? |
|
isLock?: boolean; |
|
} |
|
|
|
/** 当窗口收缩时,记住一些状态,在窗口恢复时恢复这些状态 */ |
|
export interface BeforeMiniState { |
|
menuCollapsed?: boolean; |
|
menuSplit?: boolean; |
|
menuMode?: MenuModeEnum; |
|
menuType?: MenuTypeEnum; |
|
}
|
|
|