我的订单

查看订单状态、付款进度、发货进度与自动签收时间。
{% if orders %} {% for o in orders %}
{{ o.status_text if o.status_text is defined else ('待支付' if o.order_status == 0 else '已支付,待发货' if o.order_status == 1 else '已发货,待收货' if o.order_status == 2 else '已完成' if o.order_status == 3 else '已取消') }}
订单号:{{ o.order_id }}
商品数量:{{ o.item_count or 0 }}
创建时间:{{ o.created_at }}
支付时间:{{ o.paid_at or '未支付' }}
{% if o.countdown_label is defined and o.countdown_deadline_iso %}
{{ o.countdown_label }}:{{ o.countdown_text }}
{% endif %}
¥ {{ '%.2f'|format(o.total_amount) }}
{% if o.order_status == 0 %} 立即支付 {% endif %} 查看详情
{% endfor %} {% else %}
当前还没有订单。
{% endif %}