This commit is contained in:
2025-11-21 11:10:49 +08:00
parent 545fdc5c02
commit a2acf6fe95
5 changed files with 141 additions and 451 deletions
+20 -17
View File
@@ -1,30 +1,33 @@
<div style="width: 320px; margin: 0 auto;">
<div style="width: 1220px; margin: 0 auto;">
<h1 style="text-align: center" id="剑网三金价">剑网三金价</h1>
<p style="text-align: center">服务器:梦江南</p>
<div style="overflow-x: auto; overflow-y: hidden;">
<table style="width: 300px; border-collapse: collapse; margin: 0 auto;">
<colgroup>
<col style="width: 100px">
<col style="width: 100px">
<col style="width: 100px">
</colgroup>
<table style="width: 100%; border-collapse: collapse; margin: 0 auto;">
<thead>
<tr style="height: 60px; text-align: center;">
<th>时间</th>
<th>万宝楼</th>
<th>贴吧</th>
<th style="border:1px solid #000; padding:2px;">时间</th>
{% for item in items %}
<th style="border:1px solid #000; padding:2px;">{{ item.date }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for item in items %}
<tr style="text-align: center; height: 50px;">
<td>{{ item.date }}</td>
<td>{{ item.priceWanbaolou }}</td>
<td>{{ item.priceTieba }}</td>
<tr style="height: 50px; text-align: center;">
<td style="border:1px solid #000; padding:2px;">万宝楼</td>
{% for item in items %}
<td style="border:1px solid #000; padding:2px;">{{ item.priceWanbaolou }}</td>
{% endfor %}
</tr>
<tr style="height: 50px; text-align: center;">
<td style="border:1px solid #000; padding:2px;">贴吧</td>
{% for item in items %}
<td style="border:1px solid #000; padding:2px;">{{ item.priceTieba }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>