mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
21 lines
768 B
TypeScript
21 lines
768 B
TypeScript
import Api from '@/common/Api';
|
|
|
|
export const procdefApi = {
|
|
list: Api.newGet('/flow/procdefs'),
|
|
getByResource: Api.newGet('/flow/procdefs/{resourceType}/{resourceCode}'),
|
|
save: Api.newPost('/flow/procdefs'),
|
|
del: Api.newDelete('/flow/procdefs/{id}'),
|
|
};
|
|
|
|
export const procinstApi = {
|
|
list: Api.newGet('/flow/procinsts'),
|
|
detail: Api.newGet('/flow/procinsts/{id}'),
|
|
cancel: Api.newPost('/flow/procinsts/{id}/cancel'),
|
|
tasks: Api.newGet('/flow/procinsts/tasks'),
|
|
completeTask: Api.newPost('/flow/procinsts/tasks/complete'),
|
|
backTask: Api.newPost('/flow/procinsts/tasks/back'),
|
|
rejectTask: Api.newPost('/flow/procinsts/tasks/reject'),
|
|
save: Api.newPost('/flow/procdefs'),
|
|
del: Api.newDelete('/flow/procdefs/{id}'),
|
|
};
|