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

15 lines
281 B
JavaScript

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