feat: 添加登录,注册,忘记密码功能

This commit is contained in:
2025-02-11 03:02:41 +08:00
parent a5f04356ee
commit e5fe678eb6
83 changed files with 3007 additions and 979 deletions

4
types/global.d.ts vendored
View File

@@ -197,6 +197,10 @@ declare global {
code: number;
/**操作信息 */
msg: string;
/**执行时间 */
time: string;
/**执行状态 */
success: boolean;
/**响应结果 */
data: T;
}