feat: 新增获取下一个执行的流程节点接口

This commit is contained in:
smallNorthLee
2025-03-02 22:30:10 +08:00
parent 986d1cdfc2
commit a383363e69
3 changed files with 30 additions and 18 deletions

View File

@@ -102,3 +102,8 @@ export const getFormFieldsPermission = async (params: any) => {
export const getProcessInstanceBpmnModelView = async (id: string) => {
return await request.get({ url: '/bpm/process-instance/get-bpmn-model-view?id=' + id })
}
// 获取下一个执行的流程节点
export const getNextFlowNodes = async (params: any) => {
return await request.get({ url: '/bpm/process-instance/get-next-flow-nodes', params })
}