From 68bf1876af927963a82446617f40df558fa1aa7f Mon Sep 17 00:00:00 2001 From: sinohqb Date: Thu, 20 Aug 2026 19:53:32 +0800 Subject: [PATCH] feat(ui): position current stage badge on node circle --- .../intelligent_eval/ExecutionProcess.tsx | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/frontend/web/src/components/intelligent_eval/ExecutionProcess.tsx b/frontend/web/src/components/intelligent_eval/ExecutionProcess.tsx index 2eb3608..d9394cc 100644 --- a/frontend/web/src/components/intelligent_eval/ExecutionProcess.tsx +++ b/frontend/web/src/components/intelligent_eval/ExecutionProcess.tsx @@ -143,18 +143,31 @@ function LifecycleTimeline({ ev, currentStage, abnormal }: { ev: IntelligentEval fontSize: 18, transition: 'all 0.3s', border: isCurrent ? `2px solid ${colors.primary}` : 'none', + position: 'relative', }} > {isCompleted ? : } + {isCurrent && ( +
+ 当前 +
+ )}
{stage.title}
- {isCurrent && ( - - 当前 - - )} {time && (
{formatDateTime(time)}