{% extends 'templates/full.volt' %} {% block content %} {{ partial('partials/macro_order') }}
基本信息 订单金额 订单类型 订单状态 流转时间
{{ item_info(order) }} {{ '¥%0.2f'|format(order.amount) }} {{ item_type(order.item_type) }} {{ order_status(order.status) }} {{ status_history(order.status_history) }}

返回上页 {% if order.status == 'pending' %} 立即支付 {% endif %} {% if (order.item_type in ['course','package']) and (order.status == 'finished') %} 申请退款 {% endif %}

{% endblock %}