diff --git a/frontend/src/components/Step4Report.vue b/frontend/src/components/Step4Report.vue index 8e53ceb5..4bb1400e 100644 --- a/frontend/src/components/Step4Report.vue +++ b/frontend/src/components/Step4Report.vue @@ -127,14 +127,20 @@ - - +
+
+ {{ $t('step4.step5Label') }} + {{ $t('step4.deepInteractionTitle') }} +
+

{{ $t('step4.deepInteractionDescription') }}

+ +
@@ -2890,6 +2896,43 @@ watch(() => props.reportId, (newId) => { color: var(--wf-todo-text); } +.next-step-card { + border: 1px solid var(--wf-active-border); + border-radius: 8px; + background: #F9FAFB; + padding: 14px; + margin: 2px 0 14px 0; +} + +.next-step-card-header { + display: flex; + align-items: baseline; + gap: 10px; + margin-bottom: 6px; +} + +.next-step-index { + font-size: 11px; + font-weight: 700; + color: #6B7280; + letter-spacing: 0.02em; + flex-shrink: 0; +} + +.next-step-title { + font-family: 'Times New Roman', Times, serif; + font-size: 16px; + font-weight: 700; + color: #111827; +} + +.next-step-copy { + font-size: 13px; + line-height: 1.5; + color: #4B5563; + margin: 0 0 12px 0; +} + .workflow-divider { height: 1px; background: var(--wf-divider); diff --git a/locales/en.json b/locales/en.json index 544c68b1..fff8dc5b 100644 --- a/locales/en.json +++ b/locales/en.json @@ -210,6 +210,9 @@ "step4": { "generatingSection": "Generating {title}...", "goToInteraction": "Enter Deep Interaction", + "step5Label": "Step 5/5", + "deepInteractionTitle": "Deep Interaction", + "deepInteractionDescription": "Continue into the simulated world to ask the Report Agent or individual agents follow-up questions.", "waitingForReportAgent": "Waiting for Report Agent...", "collapse": "Collapse ▲", "expandAll": "Show all {count} ▼", diff --git a/locales/zh.json b/locales/zh.json index cd747e2f..fbab4770 100644 --- a/locales/zh.json +++ b/locales/zh.json @@ -210,6 +210,9 @@ "step4": { "generatingSection": "正在生成{title}...", "goToInteraction": "进入深度互动", + "step5Label": "第 5/5 步", + "deepInteractionTitle": "深度互动", + "deepInteractionDescription": "继续进入模拟世界,向报告 Agent 或具体 Agent 追问后续问题。", "waitingForReportAgent": "Waiting for Report Agent...", "collapse": "收起 ▲", "expandAll": "展开全部 {count} 条 ▼",