39 lines
772 B
JavaScript
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()
|