feat: 撤回按钮报错修改

This commit is contained in:
GAOANG
2024-08-15 15:56:31 +08:00
parent 9df3d36636
commit 6c966ae27e

View File

@ -339,7 +339,11 @@
function getBackNode() {
getDrawNode(processId.value).then(res => {
drawNode.value = res[0].activityId
if (res.length) {
drawNode.value = res[0].activityId
} else {
drawNode.value = ''
}
})
}