{{ site_branding.site_name }}
商家后台
商品管理
订单管理
用户主页
你好,{{ session.get("biz_display_name") }}
退出
{% 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 %}
{{ 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 }}
编辑
查看详情
{% if p.status == 1 %}下架{% else %}上架{% endif %}
{% endfor %}
{% else %}
当前还没有商品,先添加一个。
{% endif %}