login page

This commit is contained in:
landaiqing
2024-08-11 15:21:16 +08:00
parent 438965f2a2
commit ff6a4a5d09
54 changed files with 2731 additions and 170 deletions

10
src/types/user.d.ts vendored
View File

@@ -1,6 +1,14 @@
export interface User {
token?: string
userId?: string
}
export interface AccountLogin {
account?: string
password?: string;
}
export interface PhoneLogin {
phone?: string
captcha?: string;
}