{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

商品管理

店铺:{{ merchant_ctx.shop_name }} merchant_id={{ merchant_ctx.merchant_id }} shop_id={{ merchant_ctx.shop_id }}
{% if products %} {% for p in products %} {% endfor %}
图片 商品名 分类 价格 库存 状态 更新时间 操作
商品图
{{ p.product_name }}
ID:{{ p.product_id }}
{{ p.category_name or '未分类' }} ¥ {{ '%.2f'|format(p.price) }} {{ p.stock }} {% if p.status == 1 %}上架中{% else %}已下架{% endif %} {{ p.updated_at }}
编辑 查看详情
{% else %}
当前还没有商品,先添加一个。
{% endif %}