This commit is contained in:
qsc
2025-12-24 22:43:06 +08:00
parent 02982f7a62
commit 40e0ad8fca
4 changed files with 85 additions and 141 deletions
+12 -10
View File
@@ -86,29 +86,31 @@
<div class="container">
<h1>剑网3交易行价格查询</h1>
<div class="server-info">服务器:{{ server }}</div>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>服务器</th>
<th>图标</th>
<th>物品名称</th>
<th>最低</th>
<th>数量</th>
<th>数据更新时间</th>
<th></th>
<th>数量</th>
<th>时间</th>
</tr>
</thead>
<tbody>
{% for item in items %}
{% for item in list %}
<tr>
<td>{{ item.sever }}</td>
<td class="item-col">
<img src="{{ item.IconID }}" alt="icon">
{{ item.Name }}
<img src="{{ item.icon }}" alt="icon">
</td>
<td>{{ item.AvgPrice }}</td>
<td>{{ item.SampleSize }}</td>
<td>{{ item.Date }}</td>
<td>{{ item.name }}</td>
<td>{{ item.unit_price }}</td>
<td>{{ item.count }}</td>
<td>{{ item.created }}</td>
</tr>
{% endfor %}
</tbody>