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

15 lines
276 B
JavaScript

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