fix: 新建流程取消后 取消loading

This commit is contained in:
GAOANG
2024-04-28 11:16:09 +08:00
parent da8d4b1581
commit 42148c39be
2 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@
.join('、');
}
function toggleDialog({ isClose, action, callback, onCancel, processId, taskId, nextNodes } = {}) {
function toggleDialog({ isClose, action, callback, rejectCancel, processId, taskId, nextNodes } = {}) {
if (isClose) {
isOpen.value = false;
loading.value = false;
@ -72,7 +72,7 @@
isOpen.value = true;
_action.value = action;
_callback = callback;
_onCancel = onCancel;
_onCancel = rejectCancel;
_processId = processId;
_taskId = taskId;
_nextNodes = nextNodes;