Skip to content

撤回流程

1、接口说明

已办(审核、驳回)撤回,区别于revoke(流程发起撤回)

2、接口类型

post

3、接口使用

3.1、接口地址

http://xxxx/api/workflow/Engine/FlowBefore/Recall/{id}

3.2、 调用示例

js
export function Recall (id, data) {
  return request({
    url: `${base}/Recall/${id}`,
    method: 'post',
    data
  })
}

3.2、入参

入参入参类型是否必须说明
idstring操作记录id,flow_taskoperatorrecord表
enCodestring流程code
nodeCodestring节点code
handleIdsstring处理人id
freeApproverUserIdstring加签用户id
copyIdsstring抄送用户id
handleOpinionstring处理意见
signImgstring签名

3.3、返回结果

json
{
  "code": 0,
  "data": {},
  "msg": "string"
}