build : 需求征集提交

This commit is contained in:
clay
2024-05-11 21:40:49 +08:00
parent a077e38fdc
commit 44ed106775
4 changed files with 64 additions and 39 deletions

View File

@@ -19,3 +19,18 @@ export const getInfo = (requirementId) => {
method: "get"
});
};
export const agreeTask = (data) => {
return request({
url: `/workflow/mosr/process/task/agree`,
method: "post",
data: data
});
};
export const addRequirement = (data) => {
return request({
url: `/workflow/mosr/requirement`,
method: "post",
data: data
});
};