fix: 完善 AI 日报详情状态与解析容错

This commit is contained in:
电摇小子
2026-07-14 11:07:35 +08:00
committed by 电摇小子
parent d28b579cb4
commit 519c10223d
15 changed files with 777 additions and 197 deletions
+12
View File
@@ -95,6 +95,18 @@ export interface GroupReportExportResult {
htmlPath?: string
pngPath?: string
imageDataUrl?: string
exportTimings?: {
html?: {
startedAt: string
endedAt: string
duration: number
}
png?: {
startedAt: string
endedAt: string
duration: number
}
}
warnings?: string[]
error?: string
}