| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | {extend name="common/common2" /}{block name="main"}<div class="row">    <div class="col-sm-12">        <div class="ibox float-e-margins">            <div class="ibox-content">                <table class="table table-bordered">                    <tbody>                    <tr>                        <th style="width:120px ">单号</th><td>{$info['sn']}</td>                    </tr>                    <tr>                        <th>用户名</th><td>{$info['user_name']}</td>                    </tr>                    <tr>                        <th>空桶名称</th><td>{$info['barrel_name']}</td>                    </tr>                    <tr>                        <th>数量</th><td>{$info['num']}</td>                    </tr>                    <tr>                        <th>金额</th><td>{$info['amount']}</td>                    </tr>                    <tr>                        <th>创建时间</th><td>{$info['create_time']}</td>                    </tr>                    <tr>                        <th>状态</th><td>{$info['status_name']}</td>                    </tr>                    {if $info.status>0}                    <tr>                        <th>审核人</th><td>{$info['deal_user_name']}</td>                    </tr>                    <tr>                        <th>审核时间</th><td>{$info['deal_time']}</td>                    </tr>                    <tr>                        <th>备注</th><td>{$info['remark']}</td>                    </tr>                    {/if}                    {if $info['status']==0}                    <tr>                        <th>操作</th><td><a href="javascript:;" url="{:url('option',['id'=>$info['id']])}" data-title="审核" onclick="layer_open(this,2)" class="btn btn-xs btn-danger">审核</a>                    </td>                    </tr>                    {/if}                    </tbody>                </table>            </div>        </div>    </div></div>{/block}
 |