Files
ClassContent/项目合集/菜谱App/fontend/js/service/index.js
2024-09-27 02:06:13 +08:00

39 lines
772 B
JavaScript

/**
* 首页的ajax请求中间层封装
*/
class IndexService {
async bannerIndex(params) {
return await http({
type: 'GET',
url: Config.apiUrl.bannerIndex,
data: params
})
}
async threeMeals(params) {
return await http({
type: 'GET',
url: Config.apiUrl.threeMeals,
data: params
})
}
async type(params) {
return await http({
type: 'GET',
url: Config.apiUrl.type,
data: params
})
}
async indexClass(params) {
return await http({
type: 'GET',
url: Config.apiUrl.indexClass,
data: params
})
}
}
var indexService = new IndexService()