You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
18 lines
338 B
4 years ago
|
|
||
|
|
||
|
import request from "@/utils/request";
|
||
|
|
||
|
/**
|
||
|
* 查询所有直播间
|
||
|
*/
|
||
|
export function yxWechatLive(data) {
|
||
|
return request.get("/yxWechatLive", data, { login: true });
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取直播回放
|
||
|
*/
|
||
|
export function getLiveReplay(id, data) {
|
||
|
return request.get("/yxWechatLive/getLiveReplay/" + id, data, { login: false });
|
||
|
}
|