From fce7de1cc8c27ced79618ada71a760feb9d84361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Tue, 18 Aug 2026 12:17:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=20UI=20=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E5=99=A8=E5=B7=A5=E4=BD=9C=E6=B5=81=E6=93=8D=E4=BD=9C=E4=BD=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 AI 操作按钮和继续按钮对齐到操作卡右侧 保留当前步骤标题与运行状态在左侧 --- .../components/WorkflowActionCard.tsx | 44 ++++++++++--------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx b/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx index 3319c9aaf..6ea4886b0 100644 --- a/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx +++ b/apps/ai-game-creator-shell/src/view/ui-editor/components/WorkflowActionCard.tsx @@ -27,31 +27,35 @@ export function WorkflowActionCard({ return (
-
-

{action.label}

- - {controller.nextStep ? ( +
+
+

{action.label}

+ {status ? ( + + {status} + + ) : null} +
+
- ) : null} - {status ? ( - - {status} - - ) : null} + {controller.nextStep ? ( + + ) : null} +
);