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.

60 lines
2.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{extend name="../views/public/lists.html"/}
{block name="table"}
<div class="panel-body">
<form class="form-inline" role="form" id="search-form" method="get">
<div class="form-group" style="width: 16%">
<input type="text" class="form-control daterangepicker-time" name="time" value="{$search['time']}" placeholder="生成时间"
readonly> <span id="beginTime">×</span>
</div>
<div class="form-group" style="width: 16%">
<input type="text" class="form-control" name="order_number" value="{$search['order_number']}" placeholder="关联订单编号">
</div>
<div class="form-group">
<select class="form-control" name="type">
<option value="">--操作类型--</option>
{volist name=":DISTRIBUTION_LOG_LIST" id="vo"}
<option value="{$key}" {eq name="search['type']" value="$key" }selected="selected" {/eq}>{$vo.name}</option>
{/volist}
</select>
</div>
<div class="form-group">
<input type="submit" class="btn btn-success " value="查询">
</div>
<input type="hidden" name="user_id" value="{$search.user_id}">
{include file="../views/public/screen.html"}
</form>
</div>
<table class="table table-striped table-advance table-hover" id="data-table">
<thead>
<tr>
<th>
ID
</th>
<th><i></i>类型</th>
<th><i></i>文本</th>
<th><i></i>关联订单编号</th>
<th><i></i>变动佣金</th>
<th><i></i>变动后佣金</th>
<th><i></i>生成时间</th>
</tr>
</thead>
<tbody>
{volist name="dataList" id="vo"}
<tr>
<td>
{$vo.id}
</td>
<td>{:DISTRIBUTION_LOG_LIST[$vo.type]['name']}</td>
<td>{$vo.show_text}</td>
<td>{$vo.relation_order_number}</td>
<td>{$vo.commission}</td>
<td>{$vo.after_commission}</td>
<td>{$vo.create_time}</td>
</tr>
{/volist}
</tbody>
</table>
{/block}