feat: 添加验证码验证,用户注册开关

This commit is contained in:
2025-02-13 00:04:28 +08:00
parent 21d128ed66
commit 61d800d3c7
3 changed files with 22 additions and 8 deletions

View File

@@ -144,6 +144,8 @@ export const useUserStore = defineStore({
username: string;
password: string;
loginDay?: number;
uuid?: string;
code?: string;
}) {
return new Promise<ResponseResult<LoginResult>>((resolve, reject) => {
getLogin(data)