You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
export enum StorageEnum {
|
|
// 全局设置
|
|
GO_SETTING_STORE = 'GO_SETTING',
|
|
// 登录信息
|
|
GO_SYSTEM_STORE = 'GO_SYSTEM',
|
|
// 语言
|
|
GO_LANG_STORE = 'GO_LANG',
|
|
// 当前选择的主题
|
|
GO_DESIGN_STORE = 'GO_DESIGN',
|
|
// 工作台布局配置
|
|
GO_CHART_LAYOUT_STORE = 'GO_CHART_LAYOUT',
|
|
// 工作台需要保存的数据
|
|
GO_CHART_STORAGE_LIST = 'GO_CHART_STORAGE_LIST'
|
|
}
|