{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>详情</h5> <div class="ibox-tools"> <a class="toback" href="{:url('index')}"> 返回上一页 </a> </div> </div> <div class="ibox-content"> <table class="table table-bordered"> <tr> <th>运送员</th> </tr> {foreach $list as $k=>$v} <tr> <td>{$v.id}({$v.real_name})</td> </tr> {/foreach} </table> </div> </div> </div> </div> {/block} {block name="script"} <script> $(document).ready(function(){ formSetValue("enable", {$info.enable|default=1}); }); </script> {/block}