{% extends "layout.html" %} {% block content %}

市场管理

{{ stats.total_listings }}

总商品数

{{ stats.total_value }}

总价值(金币)

{{ stats.rod_count }}

鱼竿数量

{{ stats.accessory_count }}

饰品数量

{{ stats.item_count }}

道具数量

{{ stats.fish_count }}

鱼类数量

{{ stats.commodity_count }}

大宗商品数量

筛选和搜索
商品列表
显示 {{ pagination.total_items }} 个结果
{% if listings %}
{% for listing in listings %} {% endfor %}
ID 商品信息 类型 精炼等级 价格 卖家 上架时间 操作
{{ listing.market_id }}
{{ listing.item_name or '未知物品' }} {% if listing.item_description %}
{{ listing.item_description }} {% endif %}
{% if listing.item_type == 'rod' %} 鱼竿 {% elif listing.item_type == 'accessory' %} 饰品 {% elif listing.item_type == 'item' %} 道具 {% elif listing.item_type == 'fish' %} 鱼类 {% elif listing.item_type == 'commodity' %} 大宗商品 {% else %} {{ listing.item_type }} {% endif %} {% if listing.refine_level is not none %} {% if listing.refine_level >= 10 %} +{{ listing.refine_level }} {% elif listing.refine_level >= 6 %} +{{ listing.refine_level }} {% else %} +{{ listing.refine_level }} {% endif %} {% else %} 未知 {% endif %}
{{ listing.price }}
{{ listing.seller_nickname }} {% if listing.listed_at %} {% if listing.listed_at.strftime is defined %} {{ listing.listed_at.strftime('%Y-%m-%d %H:%M') }} {% else %} {{ listing.listed_at }} {% endif %} {% else %} 未知 {% endif %}
{% if pagination.total_pages > 1 %} {% endif %} {% else %}
暂无商品数据

请检查筛选条件或等待用户上架商品

{% endif %}
加载中...
处理中...
{% endblock %} {% block extra_js %} {% endblock %}