Files
astrbot_plugin_jx3/templates/pages/qufuzhuangtai.html
T
2026-08-04 02:08:49 +08:00

46 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{# template-title: 区服状态面板 #}
{# template-components: data-layout collection-card #}
<!-- 无界区 -->
<div class="collection-section">
<div class="collection-heading">无界区({{ server_wj|length if server_wj else 0 }}</div>
{% if server_wj %}
<div class="card-grid" style="--grid-columns: 4">
{% for item in server_wj %}
<div class="server-status-card {{ item.status }}">{{ item.server }}</div>
{% endfor %}
</div>
{% else %}
<div class="collection-empty">暂无数据</div>
{% endif %}
</div>
<!-- 电信区 -->
<div class="collection-section">
<div class="collection-heading">电信区({{ server_dx|length if server_dx else 0 }}</div>
{% if server_dx %}
<div class="card-grid" style="--grid-columns: 4">
{% for item in server_dx %}
<div class="server-status-card {{ item.status }}">{{ item.server }}</div>
{% endfor %}
</div>
{% else %}
<div class="collection-empty">暂无数据</div>
{% endif %}
</div>
<!-- 双线区 -->
<div class="collection-section">
<div class="collection-heading">双线区({{ server_sx|length if server_sx else 0 }}</div>
{% if server_sx %}
<div class="card-grid" style="--grid-columns: 4">
{% for item in server_sx %}
<div class="server-status-card {{ item.status }}">{{ item.server }}</div>
{% endfor %}
</div>
{% else %}
<div class="collection-empty">暂无数据</div>
{% endif %}
</div>