四零语境前端代码仓库
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.
 
 
 

39 lines
645 B

import http from "@/api/http";
export default{
async getSignup(data) {
// 首页底部内容添加报名
return http({
url: '/index/linkSignup',
method: 'POST',
data,
needToken: true
})
},
// 首页底部内容链接
async getLink() {
return http({
url: '/index/link',
method: 'GET',
})
},
// 首页底部内容链接详情
async getLinkDetails(data) {
return http({
url: '/index/linkDetails',
method: 'GET',
data
})
},
// 查询轮播图
async getBanner() {
return http({
url: '/index/banner',
method: 'GET',
})
}
}