fix(ops): 修复仪表盘图表不显示 — funnelData 字段名与后端 statusDistribution 不匹配
后端 API 返回的字段名为 statusDistribution,但前端类型定义和数据映射使用的是 funnelData, 导致工单状态分布、工牌队列统计、功能类型排行图表数据为 undefined 无法渲染。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user