{% extends "base.html" %} {% block title %}购物车 - 太白购物商城{% endblock %} {% block head %} {% endblock %} {% block content %}

我的购物车


{% if cart_items %}
商品信息
单价
数量
操作
{% for item in cart_items %}
{% if item.product.main_image %} {{ item.product.name }} {% else %}
{% endif %}
{{ item.product.name }}
{% if item.product.brand %} 品牌:{{ item.product.brand }}
{% endif %} {% if item.spec_combination %} 规格:{{ item.spec_combination }}
{% endif %} 库存:{{ item.get_stock() }}件 {% if not item.is_available() %}
{% if item.product.status != 1 %} 商品已下架 {% elif item.get_stock() < item.quantity %} 库存不足 {% endif %}
{% endif %}
¥{{ "%.2f"|format(item.get_price()) }}
小计:¥{{ "%.2f"|format(item.get_total_price()) }}
{% endfor %}
结算信息
已选商品: 0
商品总价: ¥0.00

应付总额: ¥0.00
7天无理由退换
全国包邮
正品保证
{% else %}

购物车是空的

快去选购您喜欢的商品吧!

去购物
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}