This commit is contained in:
qsc
2026-09-05 22:41:53 +08:00
parent 21033c8184
commit a42d3146c5
20 changed files with 432 additions and 16 deletions
+34
View File
@@ -0,0 +1,34 @@
{# template-title: 跨服名剑榜 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>{{ name }}</h1>
<div class="data-page__meta">{{ server }} · {{ mode_name }}{% if update_time %} · 更新时间:{{ update_time }}{% endif %}</div>
<table class="data-table">
<thead>
<tr>
<th>排名</th>
<th>队伍名称</th>
<th>积分</th>
<th>胜场</th>
<th>败场</th>
<th>总场数</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td class="data-cell--rank">{{ loop.index }}</td>
<td class="data-cell--name data-cell--wrap">{{ item.corpsName }}</td>
<td class="data-cell--score">{{ item.corpsLevel }}</td>
<td class="data-cell--nowrap data-cell--numeric">{{ item.seasonWinCount }}</td>
<td class="data-cell--nowrap data-cell--numeric">{{ item.seasonLoseCount }}</td>
<td class="data-cell--nowrap data-cell--numeric">{{ item.seasonTotalCount }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>