feat: 新增图层展示类型持久化存储

This commit is contained in:
奔跑的面条
2022-10-01 21:10:06 +08:00
parent 87440362ac
commit 28668f2acb
8 changed files with 43 additions and 24 deletions
+7 -4
View File
@@ -36,6 +36,12 @@ interface EchartsDataType {
source: any[]
}
// 组件状态
export interface StatusType {
lock: boolean,
hide: boolean,
}
// 滤镜/变换枚举
export enum FilterEnum {
// 是否启用
@@ -84,11 +90,8 @@ export interface PublicConfigType {
// 动画
animations: string[]
},
status: {
lock: boolean,
hide: boolean,
},
filter?: string
status: StatusType,
setPosition: Function
}