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.
12 lines
259 B
12 lines
259 B
import service from ".";
|
|
const homeApi = {
|
|
//获取首页列表
|
|
gethomeList() {
|
|
return service.get('/mainpage/get-shows');
|
|
},
|
|
//获取视频列表
|
|
getHomeVideo(){
|
|
return service.get('/mainpage/get-videos');
|
|
}
|
|
}
|
|
export default homeApi;
|