From 7c42a800a2b24e938bf969fe10b919ae52136c61 Mon Sep 17 00:00:00 2001 From: li-shengren-123456 Date: Thu, 27 Feb 2025 09:32:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9app=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E7=8A=B6=E6=80=81=E9=A1=BA=E5=BA=8F?= =?UTF-8?q?=EF=BC=8C=E6=B7=BB=E5=8A=A0=E5=A4=8D=E5=88=B6=E5=9B=BE=E6=A0=87?= =?UTF-8?q?=E6=89=8B=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 -- src/components/dialoguePanel/FlowCode.vue | 1 + src/views/createapp/components/workFlow.vue | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index a6bd49ed..46439d73 100644 --- a/src/App.vue +++ b/src/App.vue @@ -10,5 +10,3 @@ import DialogueView from 'src/views/dialogue/dialogueView.vue'; - - diff --git a/src/components/dialoguePanel/FlowCode.vue b/src/components/dialoguePanel/FlowCode.vue index 1d9b42b9..017998bc 100644 --- a/src/components/dialoguePanel/FlowCode.vue +++ b/src/components/dialoguePanel/FlowCode.vue @@ -123,6 +123,7 @@ onMounted(() => { .copyIcon { width: 16px; + cursor: pointer; } .lightCopy { background: url(@/assets/svgs/light_copy.svg) center center no-repeat; diff --git a/src/views/createapp/components/workFlow.vue b/src/views/createapp/components/workFlow.vue index 870da450..b99fbc5b 100644 --- a/src/views/createapp/components/workFlow.vue +++ b/src/views/createapp/components/workFlow.vue @@ -466,10 +466,10 @@ $bus.on('getNodesStatue', lines => { } updateNodeFunc(newLines.data.flow.stepId, newLines.data.flow?.stepStatus, constTime); } else if (newLines?.data?.event === 'flow.stop') { + emits('updateFlowsDebug') debugStatus.value = newLines.data.flow?.stepStatus; debugTime.value = `${totalTime.value.toFixed(3)}s` // 最后更新-调用一下接口 - emits('updateFlowsDebug') } else { // do nothing } -- Gitee