feat: 新增玩法规则页并增强注单筛选与结果展示

This commit is contained in:
2026-05-16 18:00:42 +08:00
parent 500d7ec816
commit 5f5ce6c29d
16 changed files with 1241 additions and 323 deletions

View File

@@ -10,6 +10,10 @@ export type GetTicketItemsParams = {
page?: number;
per_page?: number;
draw_no?: string;
number?: string;
status?: string[];
start_date?: string;
end_date?: string;
};
/** `GET /api/v1/ticket/items`(需登录) */
@@ -23,6 +27,10 @@ export function getTicketItems(
page: params?.page,
per_page: params?.per_page,
draw_no: params?.draw_no,
number: params?.number,
status: params?.status,
start_date: params?.start_date,
end_date: params?.end_date,
},
},
);