yz3456
2024-07-09 32148fb89c6cbedc24aaf9cb93a215a6cc665f2b
ruoyi-ui/src/api/meeting/index.js
@@ -146,5 +146,20 @@
    method: 'get',
  })
}
// ------------------------------------------------
// 查询所有直播回放
export function listReplay(query) {
  return request({
    url: '/zLiveStreamingBack/all',
    method: 'get',
    params: query
  })
}
// 根据id查看直播回放
export function getReplayInfo(id) {
  return request({
    url: '/zLiveStreamingBack/' + id,
    method: 'get',
  })
}
// ------------------------------------------------