Files
2026-08-04 02:08:49 +08:00

47 lines
1.3 KiB
HTML

{# template-title: 的卢记录 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>的卢记录</h1>
<table class="data-table data-table--spaced">
<thead>
<tr>
<th>服务器</th>
<th>开始时间</th>
<th>捕获时间</th>
<th>捕获人</th>
<th>所属阵营</th>
<th>拍卖时间</th>
<th>拍卖价格</th>
<th>拍得者</th>
<th>所属阵营</th>
</tr>
</thead>
<tbody>
{% for m in list %}
<tr
{% if m.captureCampName == '浩气盟' %}
class="camp-haoqi"
{% elif m.captureCampName == '恶人谷' %}
class="camp-eren"
{% endif %}
>
<td>{{ m.server }}</td>
<td>{{ m.refreshTime }}</td>
<td>{{ m.captureTime }}</td>
<td>{{ m.captureRoleName }}</td>
<td>{{ m.captureCampName }}</td>
<td>{{ m.auctionTime }}</td>
<td>{{ m.auctionAmount }}</td>
<td>{{ m.auctionRoleName }}</td>
<td>{{ m.auctionCampName }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>