wpfw_ewei_shopv2/template/web/statistics/member_cost.html
2023-02-14 19:57:32 +08:00

72 lines
2.9 KiB
HTML

{template '_header'}
<div class="page-heading"> <h2>会员消费排行</h2></div>
<form action="./index.php" method="get" class="form-horizontal" role="form" id="form1">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="{EWEI_SHOP_V2_MODULE_NAME}" />
<input type="hidden" name="do" value="web" />
<input type="hidden" name="r" value="statistics.member_cost" />
<div class="page-toolbar row m-b-sm m-t-sm">
<div class="col-sm-4">
<div class="input-group-btn">
<button class="btn btn-default btn-sm" type="button" data-toggle='refresh'><i class='fa fa-refresh'></i></button>
</div>
</div>
<div class="col-sm-8 pull-right">
<select name="orderby" class='form-control input-sm select-sm' style="width: 120px;">
<option value="" {if $_GPC['orderby'] == ''} selected{/if}>排序</option>
<option value="ordercount" {if $_GPC['orderby']== 'ordercount'} selected{/if}>订单数</option>
<option value="ordermoney" {if $_GPC['orderby'] == 'ordermoney'} selected{/if}>消费金额</option>
</select>
<div class="input-group">
<input type="text" class="input-sm form-control" name='keyword' value="{$_GPC['keyword']}" placeholder="会员名/手机号"> <span class="input-group-btn">
<button class="btn btn-sm btn-primary" type="submit"> 搜索</button>
{ifp 'statistics.member_cost.export'}
<button type="submit" name="export" value='1' class="btn btn-success btn-sm">导出 Excel</button> </span>
{/if}
</div>
</div>
</div>
</form>
<table class="table table-hover">
<thead>
<tr>
<th style='width:80px;'>排行</th>
<th>粉丝</th>
<th>姓名</th>
<th>手机号</th>
<th>等级</th>
<th>消费金额</th>
<th>订单数</th>
</tr>
</thead>
<tbody>
{loop $list $key $item}
<tr>
<td>{if ($pindex -1)* $psize + $key + 1<=3}
<labe class='label label-danger' style='padding:8px;'>&nbsp;{php echo ($pindex -1)* $psize + $key + 1}&nbsp;</labe>
{else}
<labe class='label label-default' style='padding:8px;'>&nbsp;{php echo ($pindex -1)* $psize + $key + 1}&nbsp;</labe>
{/if}
</td>
<td><img src="{php echo tomedia($item['avatar'])}" style='padding:1px;width:30px;height:30px;border:1px solid #ccc' />
{$item['nickname']}</td>
<td>{$item['realname']}</td>
<td>{$item['mobile']}</td>
<td>{if empty($item['levelname'])} {php echo empty($shop['levelname'])?'普通会员':$shop['levelname']} {else}{$item['levelname']}{/if}</td>
<td>{$item['ordermoney']}</td>
<td>{$item['ordercount']}</td>
</tr>
{/loop}
</table>
{$pager}
{template '_footer'}