直播功能

This commit is contained in:
chc
2026-07-01 18:07:51 +08:00
parent 6654c1de51
commit 3a44b7243d
14 changed files with 3125 additions and 24 deletions

View File

@@ -17,6 +17,23 @@ export function getLiveList(params) {
});
}
/**
* 获取直播间详情
* @deprecated 请使用 api/live.js 中的 getLiveRoomById
* @param {number} roomId 直播间房间号
*/
export function getLiveDetail(roomId) {
return http.request({
url: `broadcast/studio`,
method: Method.GET,
params: {
pageNumber: 1,
pageSize: 1,
roomId,
},
});
}
/**
* 获取当前拼团活动的未成团的会员
*/