{{ partial('order/macro') }} {{ partial('trade/macro') }} {{ partial('refund/macro') }}
订单信息
订单编号:{{ order.sn }} 订单金额 订单类型 订单状态 创建时间
{{ item_info(order) }} ¥{{ order.amount }} {{ item_type(order.item_type) }} {{ order_status(order.status) }} {{ date('Y-m-d H:i:s',order.created_at) }}

{% if order.status == 'pending' %} {% endif %}
{% if refunds.count() > 0 %}
退款信息
{% for item in refunds %} {% endfor %}
退款序号 退款金额 退款原因 退款状态 创建时间
{{ item.sn }} ¥{{ item.amount }} {{ substr(item.apply_reason,0,15) }} {{ refund_status(item) }} {{ date('Y-m-d H:i:s',item.created_at) }}
{% endif %}
{% if trades.count() > 0 %}
交易信息
{% for item in trades %} {% endfor %}
交易号 交易金额 交易平台 交易状态 创建时间
{{ item.sn }} ¥{{ item.amount }} {{ channel_type(item.channel) }} {{ trade_status(item.status) }} {{ date('Y-m-d H:i:s',item.created_at) }}
{% endif %}
买家信息
编号 昵称 邮箱 手机
{{ user.id }} {{ user.name }} {% if account.phone %}{{ account.phone }}{% else %}N/A{% endif %} {% if account.email %}{{ account.email }}{% else %}N/A{% endif %}