feat(web+mp): AI 分析结果增强展示
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled

Web 端 AiAnalysisList:
- 分析结果 Markdown 风格渲染(标题/列表/粗体/代码)
- 趋势分析类型显示统计方法提示
- 自动分析结果显示「系统自动分析」标签

小程序 ai-report/detail:
- 新增 result_metadata 字段
- 自动分析标记(紫色标签)
- 趋势分析统计方法说明卡片
This commit is contained in:
iven
2026-04-28 20:12:34 +08:00
parent 10c79c5e39
commit f99892ee16
4 changed files with 170 additions and 9 deletions

View File

@@ -99,3 +99,32 @@
color: $tx3;
font-size: 28px;
}
.auto-badge {
margin-top: 16px;
display: inline-block;
}
.auto-badge-text {
display: inline-block;
padding: 4px 16px;
border-radius: 8px;
font-size: 20px;
font-weight: 500;
background: #f0e6ff;
color: #7c3aed;
}
.trend-tip-card {
background: #fffbeb;
border: 1px solid #fde68a;
border-radius: $r;
padding: 20px 24px;
margin-bottom: 20px;
}
.trend-tip-text {
font-size: 22px;
color: #92400e;
line-height: 1.6;
}