1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <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>
- </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>
|