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.
21 lines
311 B
21 lines
311 B
import request from '../utils/request';
|
|
|
|
/**
|
|
* 热播视频列表
|
|
*/
|
|
export function getHotVideoList(data) {
|
|
return request({
|
|
url: '/video/list',
|
|
data
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 获取视频弹幕列表
|
|
*/
|
|
export function getVideoDanmuList(data) {
|
|
return request({
|
|
url: '/video/danmu',
|
|
data
|
|
});
|
|
}
|