yz3456
2024-06-24 9529b0ac0372c904274095123d9f0046d795a4f3
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',
  })
}
// ------------------------------------------------