test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

1 line
5.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{layout name="layout/food" /}
<div class="row-content am-cf">
<div class="row">
<div class="am-u-sm-12 am-u-md-12 am-u-lg-12">
<div class="widget am-cf">
<div class="widget-head am-cf">
<div class="widget-title am-cf">交易记录</div>
</div>
<div class="widget-body am-fr">
<!-- 工具栏 -->
<div class="page_toolbar am-margin-bottom am-cf">
<form class="toolbar-form" action="{:url('food.user.pay/index')}">
{if $user['applet']['shop_mode']['value']==20}
<div class="am-u-sm-12">
<div class="am-fr">
<div class="am-form-group am-fl">
<div style="text-align: right;" class="am-input-group am-input-group-sm tpl-form-border-form">
<div class="am-input-group-btn">
<select name="shop_id" data-am-selected="{btnSize: 'sm'}">
<option value="0">全部门店</option>
{if isset($category)}
{foreach $category as $item}
<option value="{$item['shop_id']}" {$item['shop_id'] == $shop_id?'selected':''}>{$item['shop_name']}</option>
{/foreach}
{/if}
</select>
<button class="am-btn am-btn-default am-icon-search" type="submit"></button>
</div>
</div>
</div>
</div>
</div>
{/if}
</form>
</div>
<div class="am-scrollable-horizontal am-u-sm-12">
<table width="100%" class="am-table am-table-hover tpl-table-black">
<thead>
<tr>
<th>编号</th>
<th>用户</th>
<th>单号</th>
<th>模式</th>
<th>类型</th>
<th>数值</th>
<th>备注</th>
<th>时间</th>
</tr>
</thead>
<tbody>
{if !$list->isEmpty()}
{foreach $list as $item}
<tr>
<td class="am-text-middle">
<p class="item-title">{$item['record_id']}</p>
</td>
<td class="am-text-middle">
<div class="goods-detail">
<div class="goods-image">
<img src="{$item['user']['avatar']['url']}" alt="">
</div>
<div class="goods-info dis-flex flex-dir-column flex-x-center">
<p class="goods-title">I D {$item['user']['user_id']}</p>
<p class="goods-title">昵称:{$item['user']['nickname']}</p>
<p class="goods-title">电话:{$item['user']['phone']|default='--'}</p>
</div>
</div>
</td>
<td class="am-text-middle">{$item['order_no']}</td>
<td class="am-text-middle">{$item['mode']['text']}</td>
<td class="am-text-middle">{$item['type']['text']}</td>
<td class="am-text-middle">{$item['money']}</td>
<td class="am-text-middle">{$item['remark']|default='--'}</td>
<td class="am-text-middle">{$item['create_time']}</td>
</tr>
{/foreach}
{else /}
<tr>
<td colspan="8" class="am-text-center">暂无记录</td>
</tr>
{/if}
</tbody>
</table>
</div>
<div class="am-u-lg-12 am-cf">
<div class="am-fr">{:$list->render()} </div>
<div class="am-fr pagination-total am-margin-right">
<div class="am-vertical-align-middle">总记录:{:$list->total()}</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>