快捷功能开发完成

This commit is contained in:
huangdeliang
2021-04-02 16:33:27 +08:00
parent 49f80af8a6
commit f412a4e70e
18 changed files with 739 additions and 202 deletions

View File

@ -37,3 +37,11 @@ export function deleteDishesApi(id) {
method: "delete"
});
}
export function replaceMenuApi(data) {
return request({
url: "/custom/recipes/menu/replace",
method: "post",
data
});
}