fix: 优化已完成流程节点显示问题

This commit is contained in:
tony
2022-12-18 15:45:15 +08:00
parent 1486beb897
commit be62877c37
17 changed files with 306 additions and 296 deletions

View File

@@ -78,7 +78,7 @@ export function readImage(deployId) {
})
}
// 读取image文件
// 获取流程执行节点
export function getFlowViewer(procInsId, executionId) {
return request({
url: '/flowable/task/flowViewer/' + procInsId + '/' + executionId,
@@ -86,6 +86,15 @@ export function getFlowViewer(procInsId, executionId) {
})
}
// 流程节点数据
export function flowXmlAndNode(query) {
return request({
url: '/flowable/task/flowXmlAndNode',
method: 'get',
params: query
})
}
// 读取xml文件
export function saveXml(data) {
return request({