{extend name="common/common2" /} {block name="main"} <div class="row"> <div class="col-sm-12"> <div class="ibox float-e-margins"> <!--<div class="ibox-title">--> <!--<h5>{$meta_title}</h5>--> <!--<div class="ibox-tools">--> <!--<a class="toback" href="{:url('index')}">--> <!--返回上一页--> <!--</a>--> <!--</div>--> <!--</div>--> <div class="ibox-content"> <table class="table-bordered table"> <tr> <th>类型</th> <th>操作人</th> <th>金额</th> <th>备注</th> <th>创建时间</th> </tr> {foreach $list as $k=>$v} <tr> <td> {if $v.type==1} 订单结算 {/if} {if $v.type==2} 工资结算 {/if} {if $v.type==3} 管理员增加 {/if} {if $v.type==4} 管理员减少 {/if} </td> <td>{$v.uName}</td> {if $v.type==1 || $v.type==3} <td style="color: blue;">+{$v.money}</td> {else} <td style="color: red;">{$v.money}</td> {/if} <td>{$v.remark}</td> <td>{$v.create_time}</td> </tr> {/foreach} </table> </div> <div> {:htmlspecialchars_decode($page)} </div> </div> </div> </div> {/block} {block name="script"} <script> </script> {/block}