我的购物车

继续购物
{% if items %}
{% for item in items %}
{{ item.product_name }}
{{ item.product_name }}
库存:{{ item.stock }}
商品 ID:{{ item.product_id }}
¥ {{ "%.2f"|format(item.price) }}
小计
¥ {{ "%.2f"|format(item.subtotal) }}
{% endfor %}
共 {{ total_quantity }} 件商品
当前先按整车结算,后续可以扩展优惠券、地址和支付。
合计:¥ {{ "%.2f"|format(total_amount) }}
{% else %}

购物车还是空的

先去商品列表里挑一些商品吧。

进入商品中心

{% endif %}