This commit is contained in:
qsc
2026-08-04 02:08:49 +08:00
parent a4a01dc16d
commit 1de45c2940
87 changed files with 1207 additions and 2284 deletions
+12 -12
View File
@@ -1,11 +1,12 @@
{# template-title: 角色榜单 #}
{# template-components: data-table #}
<div class="container">
<div class="container data-page">
<h1>{{ rank_name }}</h1>
<div class="meta">{{ server }} · 更新时间:{{ update_time }}</div>
<div class="data-page__meta">{{ server }} · 更新时间:{{ update_time }}</div>
<table>
<table class="data-table">
<thead>
<tr>
<th>排名</th>
@@ -21,23 +22,22 @@
<tbody>
{% for item in items %}
<tr>
<td class="rank-col">{{ loop.index }}</td>
<td class="data-cell--rank">{{ loop.index }}</td>
<td>
<div class="force">
<div class="icon-label">
{% if icons.sect.get(item.forceName) %}
<img class="force-icon" src="{{ icons.sect[item.forceName] }}" alt="{{ item.forceName }}">
<img class="icon-label__icon" src="{{ icons.sect[item.forceName] }}" alt="{{ item.forceName }}">
{% endif %}
<span>{{ item.forceName }}</span>
</div>
</td>
<td class="role-col">{{ item.name }}</td>
<td class="level-col">{{ item.level }}</td>
<td class="camp-col">{{ item.campName }}</td>
<td class="tong-col">{{ item.tongName }}</td>
<td class="score-col">{{ item.totalScore }}</td>
<td class="data-cell--name data-cell--medium data-cell--nowrap">{{ item.name }}</td>
<td class="data-cell--center data-cell--nowrap">{{ item.level }}</td>
<td class="data-cell--center data-cell--nowrap">{{ item.campName }}</td>
<td class="data-cell--max-wide data-cell--wrap">{{ item.tongName }}</td>
<td class="data-cell--score">{{ item.totalScore }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>