code review:用户详情

This commit is contained in:
YunaiV
2023-08-23 01:41:25 +08:00
parent 746bf864d9
commit 55772cbba0
12 changed files with 126 additions and 79 deletions

View File

@ -17,6 +17,8 @@ export interface UserVO {
mark: string
createTime: Date
}
// TODO @梦:和 UserVO 搞成一个把。
export interface UserBaseInfoVO {
id: number | undefined | null
mobile: string
@ -34,6 +36,7 @@ export interface UserBaseInfoVO {
mark: string | null | undefined
createTime: Date | null | undefined
}
// 查询会员用户列表
export const getUserPage = async (params) => {
return await request.get({ url: `/member/user/page`, params })