增加用户详情页以及 签到、积分等用户详情下的子tab页。

增加 用户、签到、积分 接口的VO,方便在组件中使用。
This commit is contained in:
绮梦
2023-08-22 16:14:25 +08:00
parent 5baccbd5bc
commit 10d9f11fba
11 changed files with 661 additions and 1 deletions

View File

@@ -14,6 +14,14 @@ export interface RecordVO {
thawingTime: Date
createDate: Date
}
export interface RecordQueryVO {
bizType: string | null | undefined
title: string | null | undefined
pageNo: number
pageSize: number
userId: number | null | undefined
createDate: string[]
}
// 查询用户积分记录列表
export const getRecordPage = async (params) => {