add 添加委托
This commit is contained in:
@ -226,3 +226,15 @@ export const getTaskNodeList = (processInstanceId: string) => {
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 委托任务
|
||||
* @returns
|
||||
*/
|
||||
export const delegateTask = (data: any) => {
|
||||
return request({
|
||||
url: `/workflow/task/delegateTask`,
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
@ -32,15 +32,15 @@ export interface TaskVO extends BaseEntity {
|
||||
parentTaskId?: any;
|
||||
tenantId: string;
|
||||
claimTime?: string;
|
||||
businessStatus: string;
|
||||
businessStatusName: string;
|
||||
processDefinitionName: string;
|
||||
processDefinitionKey: string;
|
||||
participantVo: ParticipantVo;
|
||||
multiInstance: boolean;
|
||||
businessKey: string;
|
||||
wfNodeConfigVo: NodeConfigVO;
|
||||
wfDefinitionConfigVo: DefinitionConfigVO;
|
||||
businessStatus?: string;
|
||||
businessStatusName?: string;
|
||||
processDefinitionName?: string;
|
||||
processDefinitionKey?: string;
|
||||
participantVo?: ParticipantVo;
|
||||
multiInstance?: boolean;
|
||||
businessKey?: string;
|
||||
wfNodeConfigVo?: NodeConfigVO;
|
||||
wfDefinitionConfigVo?: DefinitionConfigVO;
|
||||
}
|
||||
|
||||
export interface VariableVo {
|
||||
|
Reference in New Issue
Block a user