feat: 合并代码

This commit is contained in:
duanshuwen
2025-12-21 22:34:31 +08:00
parent 7d6b07e092
commit 6de8895d10
9 changed files with 149 additions and 56 deletions

10
global.d.ts vendored
View File

@@ -88,6 +88,16 @@ declare global {
type ThemeMode = 'dark' | 'light' | 'system';
// form 表单数据类型声明
interface LoginForm {
username: string;
password: string;
randomStr: string;
code: string;
grant_type: string;
scope: string;
}
// 弹窗类型定义
interface CreateDialogProps {
winId?: string;