数字化大屏初始化

This commit is contained in:
2025-12-25 23:05:00 +08:00
commit 33dc92d74e
1051 changed files with 96122 additions and 0 deletions

16
view-vue/types/global.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
interface Window {
$loading: any
$message: any
$dialog: any
// 语言
$t: any
$vue: any
// 键盘按键记录
$KeyboardActive?: { [T: string]: boolean }
onKeySpacePressHold?: Function
// 编辑 JSON 的存储对象
opener: any
}
declare type Recordable<T = any> = Record<string, T>