This commit is contained in:
yangzhq68909 2025-05-27 14:53:18 +08:00
parent 0aafb0d04a
commit f609a4332f

View File

@ -19,7 +19,7 @@ export function taskHistoryListApi(config : Object) {
} }
/*签收*/ /*签收*/
export function claim(config : Object) { export function claim(config : Object) {
return http({ return http({
url: '/act/task/claim', url: '/act/task/claim',
method: 'PUT', method: 'PUT',
@ -75,3 +75,11 @@ export function taskEntrust(config : Object) { //委托
data: config data: config
}) })
} }
export function myApplyProcessListApi(config : object) { //
return http({
url: '/act/task/myApplyProcessList',
method: 'GET',
data: config
})
}