From d3c74578899993d79829105a0fb375e770291a58 Mon Sep 17 00:00:00 2001 From: v-zhangjc9 Date: Wed, 25 Jun 2025 10:43:26 +0800 Subject: [PATCH] =?UTF-8?q?fix(web):=20=E8=B0=83=E6=95=B4=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../client/src/pages/ai/flow/FlowEditor.tsx | 19 ++++++++++--------- .../src/pages/ai/flow/node/AmisNode.tsx | 2 -- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/service-web/client/src/pages/ai/flow/FlowEditor.tsx b/service-web/client/src/pages/ai/flow/FlowEditor.tsx index cf9624e..d102146 100644 --- a/service-web/client/src/pages/ai/flow/FlowEditor.tsx +++ b/service-web/client/src/pages/ai/flow/FlowEditor.tsx @@ -51,6 +51,7 @@ const FlowableDiv = styled.div` position: absolute; right: 20px; top: 20px; + z-index: 10; } .node-card { @@ -101,7 +102,7 @@ function FlowEditor() { } = useFlowStore() const [currentNodeForm, setCurrentNodeForm] = useState() - const editNode = (id: string, name: string, description: string, columnSchema?: Schema[]) => { + const editNode = (id: string, columnSchema?: Schema[]) => { if (!isNil(columnSchema)) { setCurrentNodeForm( amisRender( @@ -321,13 +322,6 @@ function FlowEditor() { {contextHolder} - ({key: def.key, label: def.name})), @@ -352,11 +346,18 @@ function FlowEditor() { }, }} > - +