fix(ops): 修复仪表盘图表不显示 — funnelData 字段名与后端 statusDistribution 不匹配

后端 API 返回的字段名为 statusDistribution,但前端类型定义和数据映射使用的是 funnelData,
导致工单状态分布、工牌队列统计、功能类型排行图表数据为 undefined 无法渲染。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
lzh
2026-03-01 15:46:39 +08:00
parent 004897414a
commit 81da329cbd
2 changed files with 8 additions and 8 deletions

View File

@@ -198,7 +198,7 @@ export interface DashboardStatsResp {
dates: string[];
responseTimeData: number[];
};
funnelData: Array<{ name: string; value: number }>;
statusDistribution: Array<{ name: string; value: number }>;
heatmapData: { data: number[][]; days: string[]; hours: string[] };
functionTypeRanking: Array<{
completed: number;