feat(stats): 为统计页面添加域名评论分布饼图

- 在 CommentItem 类型中新增 isAdmin 字段以支持后续功能
- 重构域名统计布局,采用表格与饼图并排的响应式设计
- 实现饼图展示各域名评论数量分布,并添加响应式调整与清理逻辑
This commit is contained in:
anghunk
2026-02-05 17:12:19 +08:00
parent 4dd2f6e525
commit f2e9160638
3 changed files with 104 additions and 21 deletions

View File

@@ -21,6 +21,7 @@ export type CommentItem = {
priority?: number;
likes?: number;
ua?: string | null;
isAdmin?: boolean;
};
export type CommentListResponse = {