feat-wip(projects): 流程定义完成

This commit is contained in:
AN
2025-06-13 00:20:45 +08:00
parent f52fa40326
commit 997f4a2d61
10 changed files with 138 additions and 16 deletions

View File

@ -62,3 +62,11 @@ export function fetchPublishDefinition(id: CommonType.IdType) {
method: 'put'
});
}
/** 复制流程定义 */
export function fetchCopyDefinition(id: CommonType.IdType) {
return request<boolean>({
url: `/workflow/definition/copy/${id}`,
method: 'post'
});
}