{{ partial('order/macro') }}
{{ partial('trade/macro') }}
{{ partial('refund/macro') }}
交易序号 |
交易金额 |
交易平台 |
交易状态 |
创建时间 |
{{ trade.sn }} |
¥{{ trade.amount }} |
{{ channel_type(trade.channel) }} |
{{ trade_status(trade.status) }} |
{{ date('Y-m-d H:i',trade.create_time) }} |
{% if trade.status == 'pending' %}
{% endif %}
{% if trade.status == 'finished' %}
{% endif %}
{% if refunds.count() > 0 %}
退款序号 |
退款金额 |
退款原因 |
退款状态 |
创建时间 |
{% for item in refunds %}
{{ item.sn }} |
¥{{ item.amount }} |
{{ substr(item.apply_note,0,15) }} |
{{ refund_status(item) }} |
{{ date('Y-m-d H:i',item.create_time) }} |
{% endfor %}
{% endif %}
订单序号 |
商品名称 |
订单金额 |
订单状态 |
创建时间 |
{{ order.sn }} |
{{ order.subject }} |
¥{{ order.amount }} |
{{ order_status(order.status) }} |
{{ date('Y-m-d H:i',order.create_time) }} |
编号 |
昵称 |
邮箱 |
手机 |
{{ user.id }} |
{{ user.name }} |
{% if account.phone %}{{ account.phone }}{% else %}N/A{% endif %} |
{% if account.email %}{{ account.email }}{% else %}N/A{% endif %} |