修改BUG

This commit is contained in:
cbb
2026-01-15 17:22:20 +08:00
parent 220b12e945
commit cfdc2ea7b0
24 changed files with 569 additions and 83 deletions

View File

@@ -139,3 +139,20 @@ export const getLiveActivityRecord = id => {
method: 'get'
})
}
/** 直播记录列表 */
export const getLiveRecordList = data => {
return http({
url: `/api/service/imLiveRoom/list`,
method: 'get',
data
})
}
/** 直播记录详情 */
export const getLiveRecordDetail = id => {
return http({
url: `/api/service/imLiveRoom/${id}`,
method: 'get'
})
}