{% extends "base.html" %} {% block title %}仪表盘{% endblock %} {% block page_title %}仪表盘{% endblock %} {% block page_desc %}账号概览与最近动态{% endblock %} {% block content %}
子域名
🌐
获取中…
本地账号
🔑
{{ stats.account_count }}
已本地存储
API 调用
{{ stats.total }}
24h 内 {{ stats.last24h }} 次
失败调用
{{ stats.failed }}
成功 {{ stats.success }} 次

📊 子域名配额

加载中…

🕐 最近动态

查看全部
{% if stats.recent %}
{% for r in stats.recent %} {% endfor %}
{{ '✓' if r.success else '✗' }}
{{ r.method }} {{ r.endpoint }} / {{ r.action }}
{{ r.created_at|fmt_date }} · {{ r.duration_ms|fmt_dur }} · {{ r.account_name or '—' }}
{% if r.error %}
{{ r.error }}
{% endif %}
{% else %}
暂无动态,执行操作后将显示在这里。
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}