刷新食谱计划

This commit is contained in:
xiezhijun
2021-07-03 17:27:39 +08:00
parent a9b69cd1a5
commit 6be196d27f
3 changed files with 50 additions and 0 deletions

View File

@ -49,3 +49,11 @@ export function listRecipesPlanByCusId(id) {
method: "get"
});
}
export function refreshRecipesPlan(cusId){
return request({
url: "/recipes/recipesPlan/refreshRecipesPlan",
method: "get",
params: {"cusId": cusId}
});
}