test
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

61 lines
1.9 KiB

{php include wl_template('common/header');}
<ul class="nav nav-tabs">
<li class="active"><a href="javascript:;">付费记录</a></li>
</ul>
<div class="app-content">
<div class="app-table-list">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th class="text-center" width="30%">商户信息</th>
<th class="text-center" width="10%">入驻类型</th>
<th class="text-center" width="10%">入驻天数</th>
<th class="text-center" width="10%">支付金额</th>
<th class="text-center" width="10%">支付方式</th>
<th class="text-center" width="10%">支付时间</th>
</tr>
</thead>
<tbody>
{loop $records $item}
<tr class="text-center">
<td class="text-left">
<div class="img">
<img class="scrollLoading" src="{IMAGE_PIXEL}" data-url="{php echo tomedia($item['logo'])}" height="50" width="50" onerror="this.src='{IMAGE_NOPIC_SMALL}'" >
<span>{$item['storename']}</span>
</div>
</td>
<td>
<span class="label label-info">{$item['typename']}</span>
</td>
<td>
{$item['num']}
</td>
<td>
{$item['price']}
</td>
<td>
{if $item['paytype']==1}<span class="label label-info">余额支付</span>{/if}
{if $item['paytype']==2}<span class="label label-success">微信支付</span>{/if}
{if $item['paytype']==3}<span class="label label-warning">支付宝</span>{/if}
{if $item['paytype']==4}<span class="label label-danger">货到付款</span>{/if}
</td>
<td>
{php echo date('Y-m-d H:i:s',$item['paytime'])}
</td>
</tr>
{/loop}
</tbody>
</table>
</div>
<div class="app-table-foot clearfix">
<div class="pull-left">
</div>
<div class="pull-right">
{$pager}
</div>
</div>
</div>
</div>
{php include wl_template('common/footer');}