feat(抽奖活动接口): 将获取的抽奖记录默认为最新100条

This commit is contained in:
hzj 2025-10-30 19:42:39 +08:00
parent ce2b4410e2
commit 59cf6998b4

View File

@ -70,10 +70,10 @@ export const multiDraw = async (data) => {
}
}
// 获取我的中奖记录
// 获取我的中奖记录(默认最新100条)
export const drawRecords = async () => {
try {
const response = await get(`/activity/lottery/my-records`)
const response = await get(`/activity/lottery/my-records?pageSize=100`)
return response
} catch (error) {
console.error('Failed to fetch get draw records:', error)