优化界面布局: 简化短信列表,增强统计信息详情

Changes:
- 短信列表: 简化为列表视图,只显示号码、时间、完整内容
- 统计信息: 最近接收增加详细参数(签名、IP、详情链接)
- 统计信息: 显示从10条增加到20条
- 优化CSS样式,提升可读性
This commit is contained in:
OpenClaw Agent
2026-02-07 00:18:01 +00:00
parent 2557d5854e
commit b5fce34793
6 changed files with 279 additions and 61 deletions

2
app.py
View File

@@ -230,7 +230,7 @@ def register_routes(app, db):
def statistics():
"""统计信息"""
stats = db.get_statistics()
recent = db.get_recent_messages(10)
recent = db.get_recent_messages(20)
from_numbers = db.get_from_numbers()
return render_template('statistics.html',