【功能修改】 新审批界面气泡卡按钮功能

This commit is contained in:
jason
2024-10-10 23:09:05 +08:00
parent a4a4dcdfc2
commit 4342c3ee05
5 changed files with 451 additions and 127 deletions

View File

@ -106,6 +106,11 @@ export const signDeleteTask = async (data: any) => {
return await request.delete({ url: '/bpm/task/delete-sign', data })
}
// 抄送
export const copyTask = async (data: any) => {
return await request.put({ url: '/bpm/task/copy', data })
}
// 获取减签任务列表
export const getChildrenTaskList = async (id: string) => {
return await request.get({ url: '/bpm/task/list-by-parent-task-id?parentTaskId=' + id })