Appearance
流程催办
1、接口说明
流程催办
2、接口类型
post
3、接口使用
3.1、接口地址
http://xxxx/api/workflow/Engine/FlowLaunch/Press/{id}
3.2、 调用示例
js
export function Press (id) {
return request({
url: `${base}/Press/${id}`,
method: 'post'
})
}
3.2、入参
入参 | 入参类型 | 是否必须 | 说明 |
---|---|---|---|
id | string | 是 | 流程实例id,flow_task表 |
3.3、返回结果
json
{
"code": 0,
"data": {},
"msg": "string"
}