yl-frontend/src/api/user.ts

135 lines
3.7 KiB
TypeScript
Raw Normal View History

2024-12-06 21:54:32 +08:00
import request from '@/utils/request'
2024-12-06 22:01:17 +08:00
import type { ApiResponse, PageResult } from './types'
2024-12-06 21:54:32 +08:00
2024-12-06 22:01:17 +08:00
// 定义接口的请求参数类型
2024-12-06 22:01:50 +08:00
/**
*
* :
* 使 interface
2024-12-07 13:03:57 +08:00
*
*
*
2024-12-06 22:01:50 +08:00
* 使 Partial<T>
2024-12-07 13:03:57 +08:00
*
* Partial<T> TypeScript TypeScript T T 使 Partial<T>
*
* Person
*
* typescript
* type Person = {
* name: string;
* age: number;
* };
* 使 Partial<T> PartialPerson name age
*
* typescript
* type PartialPerson = Partial<Person>;
* PartialPerson name age
*
* typescript
* let person1: PartialPerson = { name: "Alice" }; // 正确
* let person2: PartialPerson = { age: 30 }; // 正确
* let person3: PartialPerson = {}; // 正确
* Partial<T>
*
*
2024-12-06 22:01:50 +08:00
* 使 0 | 1
* :
* request.get<T>() - GET请求
* request.post<T>() - POST请求
* request.put<T>() - PUT请求
* T
* :
* 使 try/catch
*
* :
* 使 FormData
* Content-Type
* :
* TypeScript API
*
*/
2024-12-06 21:54:32 +08:00
export interface LoginParams {
2024-12-06 22:01:17 +08:00
phone: string
2024-12-06 21:54:32 +08:00
password: string
2024-12-06 22:01:17 +08:00
verifyCode?: string
2024-12-06 21:54:32 +08:00
}
2024-12-06 22:01:17 +08:00
// 定义后端返回的用户信息类型
2024-12-06 21:54:32 +08:00
export interface UserInfo {
id: number
2024-12-06 22:01:17 +08:00
phone: string
2024-12-06 21:54:32 +08:00
nickname: string
avatar: string
2024-12-06 22:01:17 +08:00
gender: 0 | 1 // 0-女 1-男
age: number
address: string
emergencyContact: {
name: string
phone: string
relation: string
}
}
// 定义用户列表查询参数
export interface UserQueryParams {
page: number
pageSize: number
nickname?: string
phone?: string
gender?: 0 | 1
ageRange?: [number, number]
2024-12-06 21:54:32 +08:00
}
2024-12-06 22:01:17 +08:00
// 用户API接口
2024-12-06 21:54:32 +08:00
export const userApi = {
2024-12-06 22:01:17 +08:00
// 手机号密码登录
2024-12-06 21:54:32 +08:00
login(data: LoginParams) {
return request.post<ApiResponse<{ token: string }>>('/auth/login', data)
},
2024-12-06 22:01:17 +08:00
// 发送验证码
sendVerifyCode(phone: string) {
2024-12-06 22:25:40 +08:00
return request.post<ApiResponse<void>>('/user/getEmailCode', { phone })
},
// 发送验证码
sendVerifyEmailCode(email: string) {
return request.post<ApiResponse<void>>('/user/getEmailCode', { email })
2024-12-06 21:54:32 +08:00
},
2024-12-06 22:01:17 +08:00
// 获取当前登录用户信息
getCurrentUser() {
return request.get<ApiResponse<UserInfo>>('/user/current')
2024-12-06 21:54:32 +08:00
},
// 更新用户信息
updateUserInfo(data: Partial<UserInfo>) {
2024-12-06 22:01:17 +08:00
return request.put<ApiResponse<UserInfo>>('/user/info', data)
},
// 更新用户头像
updateAvatar(file: File) {
const formData = new FormData()
formData.append('avatar', file)
return request.post<ApiResponse<{ avatarUrl: string }>>('/user/avatar', formData, {
headers: {
'Content-Type': 'multipart/form-data'
}
})
},
// 分页获取用户列表(管理员接口)
getUserList(params: UserQueryParams) {
return request.get<ApiResponse<PageResult<UserInfo>>>('/admin/users', { params })
},
// 修改密码
changePassword(data: { oldPassword: string; newPassword: string }) {
return request.post<ApiResponse<void>>('/user/change-password', data)
2024-12-06 21:54:32 +08:00
}
2024-12-06 22:01:50 +08:00
}