{{ site_branding.site_name }}
首页
全部商品
购物车
我的订单
我的钱包
地址管理
用户主页
{% if session.get("biz_is_merchant") %}
商家后台主页
{% else %}
商家入驻申请
{% endif %} {% if session.get("biz_is_admin") %}
管理员后台主页
{% endif %} {% if session.get("biz_user_id") %}
你好,{{ session.get("biz_display_name") }}
退出
{% else %}
登录
{% endif %}
全部商品
浏览当前商城已上架的全部商品,并支持按分类筛选。
搜索
全部
{% for c in categories %}
{{ c.category_name }}
{% endfor %}
{% if products %}
{% for p in products %}
{{ p.product_name }}
分类:{{ p.category_name or '未分类' }}
店铺: {% if p.shop_slug %}
{{ p.shop_name }}
{% else %} {{ p.shop_name or '暂无店铺' }} {% endif %}
库存:{{ p.stock }}
{{ p.intro }}
¥ {{ '%.2f'|format(p.price) }}
查看详情
加入购物车
{% endfor %}
{% else %}
当前分类下暂无商品。
{% endif %}