feat(report): 优化统计报告页面的UI和布局

对生成的HTML统计报告进行了全面的视觉和结构重构,以提供更现代化、更具可读性的用户界面。

- 采用仪表盘式的双栏布局(主内容区和侧边栏),将图表移至侧边栏,使数据表格更聚焦。
- 全面更新了CSS样式,包括配色、字体、卡片、表格和标签页,提升了整体的美观度和用户体验。
- 引入了响应式设计,以更好地适配移动设备。
- 将默认输出文件名从 `maibot_statistics.html` 更改为 `mofox_bot_statistics.html` 以保持项目命名一致性。
This commit is contained in:
minecraft1024a
2025-11-13 12:47:36 +08:00
parent b1a022cc3c
commit 7dc4be3555
4 changed files with 187 additions and 157 deletions

View File

@@ -115,7 +115,7 @@ class StatisticOutputTask(AsyncTask):
SEP_LINE = "-" * 84
def __init__(self, record_file_path: str = "maibot_statistics.html"):
def __init__(self, record_file_path: str = "mofox_bot_statistics.html"):
# 延迟300秒启动运行间隔300秒
super().__init__(task_name="Statistics Data Output Task", wait_before_start=0, run_interval=300)