feat: 处理监控页面显示步骤简要数值

- 显示内容库搜索结果数
- 显示互联网搜索结果数
- 显示抓取成功数
- 显示数据提取/填充状态
- 显示审核ID
This commit is contained in:
2026-07-14 12:42:59 +08:00
parent d18e80016b
commit 1712fb0756
2 changed files with 122 additions and 2 deletions
+46
View File
@@ -180,6 +180,52 @@
50% { transform: scale(1.1); }
}
/* 步骤简要数值 */
.steps-summary {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 12px 15px;
background: #f8f9fa;
border-radius: 8px;
margin-top: 10px;
}
.step-summary-item {
display: flex;
align-items: center;
gap: 5px;
padding: 4px 10px;
background: white;
border-radius: 4px;
font-size: 13px;
}
.step-summary-item.completed {
background: #d1fae5;
}
.step-summary-item.running {
background: #e0e7ff;
}
.step-summary-item.failed {
background: #fee2e2;
}
.step-summary-item.skipped {
background: #f3f4f6;
}
.step-summary-label {
color: #666;
}
.step-summary-value {
font-weight: 600;
color: #333;
}
/* 操作按钮 */
.process-actions {
display: flex;