add 增加催办

This commit is contained in:
may
2025-07-25 18:22:32 +08:00
parent 4472b24def
commit 4280c7177d
3 changed files with 140 additions and 7 deletions
+13
View File
@@ -191,3 +191,16 @@ export const getNextNodeList = (data: any): any => {
data: data
});
};
/**
* 催办任务
* @param data参数
* @returns
*/
export const urgeTask = (data: any): any => {
return request({
url: '/workflow/task/urgeTask',
method: 'post',
data: data
});
};