From 0cf40092bd578f0633398a237152b3ba183e38b7 Mon Sep 17 00:00:00 2001 From: zhanghao <774378400@qq.com> Date: Wed, 18 Mar 2026 10:41:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=99=90=E5=88=B6currentloop=E8=8A=82?= =?UTF-8?q?=E7=82=B9=E6=99=BA=E8=83=BD=E6=8B=96=E6=8B=BD=E5=88=B0=E5=BE=AA?= =?UTF-8?q?=E7=8E=AF=E8=8A=82=E7=82=B9=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/flow/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/flow/index.vue b/src/views/flow/index.vue index f6d36c9..fdb5466 100644 --- a/src/views/flow/index.vue +++ b/src/views/flow/index.vue @@ -211,7 +211,7 @@ const dragover = (e) => { const drop = (e) => { let node = e.dataTransfer.getData("flowNode"); node = JSON.parse(node); - if (["stopLoop", "subEnd", "subStart", "current"].includes(node.type)) { + if (["stopLoop", "subEnd", "subStart", "currentLoop"].includes(node.type)) { ElMessage.warning("此节点只能拖拽到循环节点的循环体中"); return; }