mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-28 13:21:37 +08:00
69 lines
2.0 KiB
Plaintext
69 lines
2.0 KiB
Plaintext
{% extends 'templates/main.volt' %}
|
|
|
|
{% block content %}
|
|
|
|
{{ partial('order/macro') }}
|
|
|
|
{% set search_url = url({'for':'admin.order.search'}) %}
|
|
|
|
<div class="kg-nav">
|
|
<div class="kg-nav-left">
|
|
<span class="layui-breadcrumb">
|
|
<a><cite>订单管理</cite></a>
|
|
</span>
|
|
</div>
|
|
<div class="kg-nav-right">
|
|
<a class="layui-btn layui-btn-sm" href="{{ search_url }}">
|
|
<i class="layui-icon layui-icon-search"></i>搜索订单
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<table class="layui-table kg-table">
|
|
<colgroup>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col>
|
|
<col width="10%">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>商品信息</th>
|
|
<th>买家信息</th>
|
|
<th>促销类型</th>
|
|
<th>订单金额</th>
|
|
<th>订单状态</th>
|
|
<th>创建时间</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in pager.items %}
|
|
{% set show_url = url({'for':'admin.order.show','id':item.id}) %}
|
|
<tr>
|
|
<td>
|
|
<p>名称:{{ item.subject }}</p>
|
|
<p>单号:{{ item.sn }}</p>
|
|
</td>
|
|
<td>
|
|
<p>昵称:{{ item.owner.name }}</p>
|
|
<p>编号:{{ item.owner.id }}</p>
|
|
</td>
|
|
<td>{{ promotion_type(item.promotion_type) }}</td>
|
|
<td>{{ '¥%0.2f'|format(item.amount) }}</td>
|
|
<td>{{ order_status(item.status) }}</td>
|
|
<td>{{ date('Y-m-d H:i:s',item.create_time) }}</td>
|
|
<td class="center">
|
|
<a class="layui-btn layui-btn-sm" href="{{ show_url }}">详情</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
{{ partial('partials/pager') }}
|
|
|
|
{% endblock %} |