{% extends "base.html" %} {% block title %}订单 - 企微工程师{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{% if order.status == 'paid' %}
{% if is_demo %}
⚡ 演示模式(微信支付未配置)
{% endif %}
支付成功
感谢您的信任!
我们的工程师将在 30分钟内 通过您留下的联系方式跟进处理。
{% elif order.status == 'pending' %}
支付处理中
您的订单已创建,正在等待支付完成。
如已完成支付请稍候刷新,系统会自动更新状态。
{% elif order.status == 'refunded' %}
已退款
该订单已完成退款处理,退款金额将在 1-7 个工作日原路返回。
{% else %}
订单已关闭
该订单已关闭,如有需要请重新下单。
{% endif %}
订单编号 {{ order.out_trade_no }}
服务类型 {{ products[order.product_type].name if order.product_type in products else order.product_type }}
支付金额 ¥{{ '%.2f'|format(order.total_fee / 100)|replace('.00', '') }}
订单状态 {% if order.status == 'paid' %}已支付 {% elif order.status == 'pending' %}待支付 {% elif order.status == 'refunded' %}已退款 {% else %}已关闭 {% endif %}
下单时间 {{ order.created_at[:19] }}
{% if order.paid_at %}
支付时间 {{ order.paid_at[:19] }}
{% endif %}
{% if order.status == 'paid' %}

工程师将在30分钟内联系您

如有紧急问题,请备注订单号联系客服

返回首页 {% elif order.status == 'pending' %} 返回重新下单 {% else %} 重新下单 {% endif %}
{% endblock %} {% block extra_scripts %}{% endblock %}