{% extends "./inc/appbase.html" %} {%block style%} {%endblock%} {% block content %}

{{controller.meta_title}}

个人中心
全部订单 待付款 ({{nopaid}}) 待收货 ({{receipt}})
{%set n = 1%} {%for item in list %}
  • 状态:{%if item.pay_status == 0 and item.delivery_status != 1 and item.status != 6 and item.status != 4%} 等待付款 {%elif (item.pay_status == 1 or item.status ==3) and item.delivery_status != 1 and item.status != 6 and item.status != 4%} 等待发货 {%elif item.delivery_status == 1 and item.status != 6 and item.status != 4 %} 等待收货 {%elif item.status == 6%} 已作废 {%elif item.status == 4%} 已完成 {%endif%}
    总价: ¥{{item.order_amount|formatCurrency}}
    {%if item.status == 4 or item.status== 6%} 删除订单 {%endif%} {%if item.pay_status == 0 and item.delivery_status != 1 and item.status != 6 and item.status != 4%} 立即付款 {%elif (item.pay_status == 1 or item.status ==3) and item.delivery_status != 1 and item.status != 6 and item.status != 4%} 提醒发货 {%elif item.delivery_status == 1 and item.status != 6 and item.status != 4 %} 确认收货 {%elif item.status == 4 or item.status == 6%} 再次购买 {%endif%}
  • {% for v in item.goods%}
  • {{v.title}}

    x{{v.goods_nums}}{%if v.type%}[{{v.type}}]{%endif%}

  • {%endfor%}
  • {{item.create_time|moment('lll')}} 订单详情
{%set n=n+1%} {%endfor%}
{% endblock%} {% block script %} {% endblock %}