51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
![]() |
{extend name="../../admin/view/main"}
|
||
|
|
||
|
{block name="content"}
|
||
|
<div class="layui-tab layui-tab-card think-bg-white table-block">
|
||
|
|
||
|
<div class="layui-tab-content think-box-shadow table-block table-block">
|
||
|
{include file='channel_account/index_search'}
|
||
|
<table class="layui-table margin-top-10" lay-skin="line">
|
||
|
{notempty name='list'}
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th class='text-left nowrap' width="">日期</th>
|
||
|
<th class='text-left nowrap' width="">渠道</th>
|
||
|
<th class='text-left nowrap' width="">渠道折扣</th>
|
||
|
<th class='text-left nowrap' width="">订单信息</th>
|
||
|
<th class='text-left nowrap' width="">账单信息</th>
|
||
|
<th class='text-left nowrap' width="">渠道余额</th>
|
||
|
<th class='text-left nowrap'>统计时间</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
{/notempty}
|
||
|
<tbody>
|
||
|
{foreach $list as $key=>$vo}
|
||
|
<tr>
|
||
|
<td class='text-left nowrap'>{$vo.day|default=''}</td>
|
||
|
|
||
|
<td class='text-left nowrap'>{$vo.cname|default=''}</td>
|
||
|
|
||
|
<td class='text-left nowrap'>{$vo.percent|default=''}</td>
|
||
|
|
||
|
<td class='text-left nowrap'>{$vo.order|raw}</td>
|
||
|
|
||
|
<td class='text-left nowrap'>{$vo.account|raw}</td>
|
||
|
<td class='text-left nowrap'>{$vo.channel_yue|default=''}</td>
|
||
|
|
||
|
<td class='text-left nowrap'>{$vo.create_at|default=''}</td>
|
||
|
</tr>
|
||
|
{/foreach}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
{empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
||
|
</div>
|
||
|
</div>
|
||
|
<style type="text/css">
|
||
|
.layui-badge {
|
||
|
line-height: 19px;
|
||
|
box-shadow: 0 0px 0px 0 rgba(0,0,0,0.15);
|
||
|
}
|
||
|
</style>
|
||
|
{/block}
|