图书馆小程序
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

2 weeks ago
  1. import request from '../utils/request';
  2. /**
  3. * 热播视频列表
  4. */
  5. export function getHotVideoList(data) {
  6. return request({
  7. url: '/video/list',
  8. data
  9. });
  10. }
  11. /**
  12. * 获取视频弹幕列表
  13. */
  14. export function getVideoDanmuList(data) {
  15. return request({
  16. url: '/video/danmu',
  17. data
  18. });
  19. }