Conflicts:
	src/views/mall/promotion/combination/record/index.vue
This commit is contained in:
YunaiV
2023-08-23 00:49:48 +08:00
14 changed files with 675 additions and 12 deletions

View File

@ -6,6 +6,15 @@ export interface SignInRecordVO {
day: number
point: number
}
export interface SignInRecordQueryVO {
pageNo: number
pageSize: number
userId?: number
nickname: number | undefined | null
day?: number | null | undefined
point?: number | null | undefined
createTime: string[] | null | undefined
}
// 查询用户签到积分列表
export const getSignInRecordPage = async (params) => {