axios封装

This commit is contained in:
仲么了
2023-12-26 10:28:29 +08:00
parent fea95de2da
commit 653a32c1ce
4 changed files with 244 additions and 70 deletions

View File

@@ -1,8 +1,9 @@
// 登录
export interface LoginData {
username: String
password: String
imageCode: String
grant_type: String
verifyCode: number
username: string
password?: string
imageCode?: string
grant_type: string
verifyCode?: number
refresh_token?: string
}