mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-05 16:31:31 +08:00
20 lines
468 B
Plaintext
20 lines
468 B
Plaintext
{% extends 'templates/main.volt' %}
|
|
|
|
{% block content %}
|
|
|
|
{{ partial('refund/macro') }}
|
|
|
|
<table class="kg-table layui-table">
|
|
<tr>
|
|
<td>状态</td>
|
|
<td>时间</td>
|
|
</tr>
|
|
{% for item in status_history %}
|
|
<tr>
|
|
<td>{{ refund_status(item.status) }}</td>
|
|
<td>{{ date('Y-m-d H:i:s',item.create_time) }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
{% endblock %} |