食谱制作页面的快捷列表关键字搜索

This commit is contained in:
xiezhijun
2021-06-17 18:42:17 +08:00
parent a731b57bdc
commit 1951e18871
10 changed files with 137 additions and 7 deletions

View File

@ -45,3 +45,17 @@ export function replaceMenuApi(data) {
data
});
}
/**
* 根据菜品ID查询大类小类名称
* @param dishId
*/
export function getDishClassNameById(dishId) {
return request({
url: "/custom/recipes/getDishClassNameById",
method: "get",
params: {'dishId':dishId}
});
}