工作流

This commit is contained in:
2025-07-02 10:46:26 +08:00
parent 22544c7c06
commit bbddf6b6ea
17 changed files with 2814 additions and 10 deletions

View File

@ -178,3 +178,16 @@ export const currentTaskAllUser = (taskId: string | number) => {
method: 'get'
});
};
/**
* 获取下一节点写
* @param data参数
* @returns
*/
export const getNextNodeList = (data: any): any => {
return request({
url: '/workflow/task/getNextNodeList',
method: 'post',
data: data
});
};