From 59cf6998b4f756fc44b8b4745ea2e980eeee586d Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 30 Oct 2025 19:42:39 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=8A=BD=E5=A5=96=E6=B4=BB=E5=8A=A8?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3):=20=E5=B0=86=E8=8E=B7=E5=8F=96=E7=9A=84?= =?UTF-8?q?=E6=8A=BD=E5=A5=96=E8=AE=B0=E5=BD=95=E9=BB=98=E8=AE=A4=E4=B8=BA?= =?UTF-8?q?=E6=9C=80=E6=96=B0100=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/lottery.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/lottery.js b/src/api/lottery.js index e715b7d..bb5a224 100644 --- a/src/api/lottery.js +++ b/src/api/lottery.js @@ -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)