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.

11 lines
259 B

5 months ago
  1. import service from ".";
  2. const homeApi = {
  3. //获取首页列表
  4. gethomeList() {
  5. return service.get('/mainpage/get-shows');
  6. },
  7. //获取视频列表
  8. getHomeVideo(){
  9. return service.get('/mainpage/get-videos');
  10. }
  11. }
  12. export default homeApi;