diff --git a/src/services/client/audio.ts b/src/services/client/audio.ts
index b9f76cf..8b708a7 100644
--- a/src/services/client/audio.ts
+++ b/src/services/client/audio.ts
@@ -9,7 +9,17 @@ export const apiGetSongInfo = async (id: string) => {
* @pageNum 页码,不传或者小于1,则返回所有收藏歌曲
* @pageSize 每页条数,不传或者小于1,则返回所有收藏歌曲
*/
-export const apiGetSongCollect = async () => {
- const result: FetchResponse
> = await clientHttp.get(`/luoo-music/song/collect`);
+export const apiGetSongCollect = async ({
+ pageNum,
+ pageSize,
+ userId,
+}: {
+ pageNum: number;
+ pageSize: number;
+ userId: string;
+}) => {
+ const result: FetchResponse> = await clientHttp.get(
+ `queyueapi/luoo-music/song/collect?userId=${userId}&pageNum=${pageNum}&pageSize=${pageSize}`,
+ );
return result;
};