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

82 lines
3.0 KiB
HTML

{template '_header'}
<div class="page-heading"> <h2>商品销售明细</h2> <span>查询商品销售量和销售额明细 总数: <span style='color:red'>{$total}</span></div>
<form action="./index.php" method="get" class="form-horizontal">
<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.goods" />
<div class="page-toolbar row m-b-sm m-t-sm">
<div class="col-sm-5">
<div class="btn-group btn-group-sm" style='float:left'>
<button class="btn btn-default btn-sm" type="button" data-toggle='refresh'><i class='fa fa-refresh'></i></button>
</div>
{php echo tpl_daterange('datetime', array('sm'=>true,'placeholder'=>'下单时间'),true);}
</div>
<div class="col-sm-6 pull-right">
<select name='orderby' class='form-control input-sm select-md' style="width:120px;" >
<option value='' {if $_GPC['orderby']==''}selected{/if}>排序</option>
<option value='0' {if $_GPC['orderby']=='0'}selected{/if}>按销售额</option>
<option value='1' {if $_GPC['orderby']=='1'}selected{/if}>按销售量</option>
</select>
<div class="input-group">
<input type="text" class="form-control input-sm" name="title" value="{$_GPC['title']}" placeholder="商品名称"/>
<span class="input-group-btn">
<button class="btn btn-sm btn-primary btn-sm" type="submit"> 搜索</button>
{ifp 'statistics.goods.export'}
<button type="submit" name="export" value="1" class="btn btn-success btn-sm">导出 Excel</button>
{/if}
</span>
</div>
</div>
</div>
</form>
<table class="table table-hover">
<thead class="navbar-inner">
<tr>
<th style="width:190px;">订单号</th>
<th style="width:220px;">商品名称</th>
<th>商品编号</th>
<th>数量</th>
<th>价格</th>
<th>成交时间</th>
</tr>
</thead>
<tbody>
{loop $list $item}
<tr>
<td>{$item['ordersn']}</td>
<td><img src="{php echo tomedia($item['thumb'])}" style="width: 30px; height: 30px;border:1px solid #ccc;padding:1px;">
{$item['title']}
{if !empty($item['optiontitle'])}
<br>规格:{$item['optiontitle']}
{/if}
</td>
<td>{$item['goodssn']}</td>
<td>{$item['total']}</td>
<td>{$item['price']}</td>
<td>{php echo date('Y-m-d',$item['createtime'])}<br/>{php echo date('H:i:s',$item['createtime'])}</td>
</tr>
{/loop}
</table>
{$pager}
{template '_footer'}