Dining_Hall/api/week-menu/index.js

13 lines
232 B
JavaScript
Raw Normal View History

2025-01-16 16:25:17 +08:00
import request from '@/utils/request'
/**
* @data 查询参数 获取一周菜谱
*/
export function getWeekCookbookAPI(data) {
return request({
url: '/smart-canteen/week/recipe/detail',
method: 'post',
data
})
}