| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | 
<style type="text/css">    .new_table {        border-collapse: collapse;        margin: 0 auto;        text-align: left;        width: 100%;        font-size: 12px;    }    .new_table td,    table th {        border: 1px solid #cad9ea;        color: #666;        height: 3.5em;        padding-left: 1%;    }    .new_table thead th {        background-color: #CCE8EB;        width: 100px;    }    .new_table input{background-color:#f2f2f2;;border: 0px solid #cad9ea;}</style><div class="row">    <div class="panel panel-default panel-intro">        {:build_heading()}        <div class="panel-body">            <div id="myTabContent" class="tab-content">                <div class="tab-pane fade active in" id="one">                    <div class="tableTitle" style="font-size: 16px;margin: 10px 0">更换件列表</div>                    <div class="widget-body no-padding">                        <div id="toolbar" class="toolbar">                            <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>                        </div>                        <table id="table" class="table table-striped table-bordered table-hover table-nowrap"                               data-operate-edit="{:$auth->check('teacher/exams/edit')}"                               data-operate-del="{:$auth->check('teacher/exams/del')}"                               width="100%">                        </table>                    </div>                </div>            </div>            <div id="" class="tab-content">                <div class="tab-pane fade active in" id="two">                    <div class="tableTitle" style="font-size: 16px;margin: 10px 0">坐席列表</div>                    <div class="widget-body no-padding">                        <div id="toolbar1" class="toolbar">                            <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>                        </div>                        <table id="table1" class="table table-striped table-bordered table-hover table-nowrap"                               data-operate-edit="{:$auth->check('teacher/exams/edit')}"                               data-operate-del="{:$auth->check('teacher/exams/del')}"                               width="100%">                        </table>                    </div>                </div>            </div>            <div id="" class="tab-content">                <div class="tab-pane fade active in" id="three">                    <div class="tableTitle" style="font-size: 16px;margin: 10px 0">得分情况</div>                    <div class="widget-body no-padding">                        <div id="toolbar2" class="toolbar">                            <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>                        </div>                        <table id="table2" class="table table-striped table-bordered table-hover table-nowrap"                               data-operate-edit="{:$auth->check('teacher/exams/edit')}"                               data-operate-del="{:$auth->check('teacher/exams/del')}"                               width="100%">                        </table>                    </div>                </div>            </div>                    </div>    </div>    <div class="col-lg-12" style="margin: 10px 10px 0 10px">        <form id="update-form" role="form" data-toggle="validator" method="POST" action="">            <div class="form-group layer-footer" style="margin-top: 3%;text-align: center">                <label class="control-label col-xs-12 col-sm-2"></label>                <div class="col-xs-12 col-sm-8">                    <button type="button" class="btn btn-info btn-closes">{:__('关闭')}</button>                </div>            </div>        </form>    </div></div>
 |