处理暂停日期

This commit is contained in:
huangdeliang
2021-03-29 19:42:00 +08:00
parent 6fe95722e2
commit 8f94c50d22
6 changed files with 116 additions and 55 deletions

View File

@ -49,3 +49,14 @@ export function getRecipesFullInfo(id) {
}
});
}
export function getPlanPause(id) {
return request({
url: "/wap/recipes/plan/pause/" + id,
method: "get",
headers: {
isToken: false
}
});
}