feat-wip(components): 审批信息流程图组件

This commit is contained in:
AN
2025-06-18 23:06:40 +08:00
parent 90ebf83501
commit fb652ce7ff
6 changed files with 223 additions and 21 deletions

View File

@ -34,3 +34,11 @@ export function fetchFlowInvalidOperate(data: Api.Workflow.FlowInvalidOperatePar
data
});
}
/** 获取流程记录 */
export function fetchGetFlowHisTaskList(businessId: CommonType.IdType) {
return request<Api.Workflow.InstanceIdWithHisTask>({
url: `/workflow/instance/flowHisTaskList/${businessId}`,
method: 'get'
});
}