{% extends "base.html" %} {% block nav_key %}dashboard{% endblock %} {% block page_key %}dashboard{% endblock %} {% block title %}续火花控制台{% endblock %} {% block page_title %}今日续火花{% endblock %} {% block page_subtitle %}确认进度、异常目标与下一次自动触发{% endblock %} {% block topbar_actions %} {% set top_summary = ops.send_console.summary %} 发送控制台
{% endblock %} {% block content %} {% set summary = ops.send_console.summary %} {% set total = summary.total_targets or 0 %} {% set confirmed = summary.today_confirmed_targets or 0 %} {% set progress_pct = (confirmed / total * 100)|round(0)|int if total else 0 %}
{% if ops.task_lock.running %} 发送任务运行中,已运行约 {{ ops.task_lock.ageSeconds }} 秒 {% elif ops.task_lock.stale %} 检测到过期任务锁,下次启动任务时会自动清理 {% else %} 当前没有发送任务运行 {% endif %} 实时
任务已结束,详细发送记录可以刷新查看。
{{ progress_pct }}% 强确认
今日确认进度
{{ confirmed }}/{{ total }}
{{ summary.enabled_accounts }} 个启用账号,共 {{ total }} 个目标
下次自动触发
{{ ops.schedule.nextTriggerDisplay or "-" }}
{{ ops.schedule.label or "-" }}
最近强确认
{{ summary.last_confirmed_display or "-" }}
以服务端回执或页面回显为准
需要处理
{{ summary.today_attention_targets }}
待核验、失败和账号阻断
确认成功
{{ confirmed }}
强证据确认
待核验
{{ summary.today_unconfirmed_targets }}
会进入异常补发
失败或阻断
{{ summary.today_failed_targets + summary.today_account_blocked_targets }}
可针对性重试
待发送
{{ summary.today_pending_targets + summary.today_unprocessed_targets }}
等待窗口或尚未处理

账号状态

异常账号排在前面,点击发送控制台查看目标级明细。

查看全部发送明细
交互式登录浏览器扫码登录、登录态失效修复与账号同步 待检查
{% if is_admin %}

用户管理

创建普通用户并分配可管理的抖音账号。管理员始终可以查看全部账号。

{{ web_users|length }} 个普通用户
创建用户账号绑定可后续调整
{% for web_user in web_users %}
{{ web_user.username }}{{ web_user.account_refs|length }} 个绑定账号{% if web_user.enabled %}可登录{% else %}已停用{% endif %}
{% endfor %}
{% endif %}

账号管理

管理开关、目标好友、好友缓存和登录态。

{{ accounts|length }} 个账号
{% if is_admin %}
运行配置消息变体和发送间隔
运维操作调度、代理和日志
查看详细日志
系统设置路径、登录 API 与管理员密码
{% endif %} {% if not is_admin %}
修改登录密码修改当前 Web 用户密码
{% endif %}
{% endblock %}