File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,19 +63,19 @@ export const delegateTask = async (data) => {
63
63
* 加签
64
64
*/
65
65
export const taskAddSign = async ( data ) => {
66
- return await request . put ( { url : '/bpm/task/add -sign' , data } )
66
+ return await request . put ( { url : '/bpm/task/create -sign' , data } )
67
67
}
68
68
69
69
/**
70
70
* 获取减签任务列表
71
71
*/
72
72
export const getChildrenTaskList = async ( id : string ) => {
73
- return await request . get ( { url : '/bpm/task/get- children-task -list?taskId=' + id } )
73
+ return await request . get ( { url : '/bpm/task/children-list?taskId=' + id } )
74
74
}
75
75
76
76
/**
77
77
* 减签
78
78
*/
79
79
export const taskSubSign = async ( data ) => {
80
- return await request . put ( { url : '/bpm/task/sub -sign' , data } )
80
+ return await request . delete ( { url : '/bpm/task/delete -sign' , data } )
81
81
}
You can’t perform that action at this time.
0 commit comments