12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <link type="text/css" rel="stylesheet" href="/css/needDetail.css" />
- <div class="main-content-inner">
- <ul class="clearfix main-content-inner-ul">
- <?php if(Yii::app()->session['coachInfo']['leader']==1){?>
- <li class="pull-left">
- <button onclick='location.href="<?php echo $this->createUrl("semester/index");?>"' class="button button_normal button_group button_arrow" data-button="red">学期管理</button>
- <img src="/images/line.jpg" style="height:45px;" />
- </li>
- <?php }?>
- <li class="pull-left">
- <button onclick='location.href="<?php echo $this->createUrl("teacher/index");?>"' class="button button_normal button_group button_arrow" data-button="red">教师管理</button>
- <img src="/images/line.jpg" style="height:45px;" />
- </li>
- <li class="pull-left">
- <button onclick='location.href="<?php echo $this->createUrl("classes/index");?>"' class="button button_normal button_group button_arrow" data-button="red">班级管理</button>
- <img src="/images/line.jpg" style="height:45px;" />
- </li>
- <li class="pull-left">
- <button onclick='location.href="<?php echo $this->createUrl("studentinfo/index");?>"' class="button button_normal button_group button_arrow button_active" data-button="red">学生管理</button>
- <img src="/images/line.jpg" style="height:45px;" />
- </li>
- <li class="pull-left">
- <button onclick='location.href="<?php echo $this->createUrl("classes/export");?>"' class="button button_normal button_group button_arrow " data-button="red">导出学生</button>
- <img src="/images/line.jpg" style="height:45px;" />
- </li>
- </ul>
- <div class="layout-gap">
- <section class="anc-top flex status_1>
- <div class="flex-one flex">
- <span><h1>失败数据记录</h1></span>
- <span style="margin-left: 20px;line-height: 69px;color: red">请检查是否存在重复准考证号,不存在的准考证号,目标院校名称不准确</span>
- </div>
- </section>
- <section>
- <div class="x_content">
- <table id="datatable" class="table table-striped table-bordered" style="width:60%;margin-left: 30px;">
- <thead>
- <tr>
- <th>年级</th>
- <th>班级</th>
- <th>姓名</th>
- <th>系统准考证号</th>
- <th>学生目标院校</th>
- </tr>
- </thead>
- <tbody>
- <?php if(!empty($dataList)):?>
- <?php foreach ($dataList as $loop): ?>
- <?php $item = explode(',',$loop);?>
- <tr>
- <td><?php echo isset($item[0])?$item[0]:'';?></td>
- <td><?php echo isset($item[1])?$item[1]:'';?></td>
- <td><?php echo isset($item[2])?$item[2]:'';?></td>
- <td><?php echo isset($item[3])?$item[3]:'';?></td>
- <td><?php echo isset($item[4])?$item[4]:'';?></td>
- </tr>
- <?php endforeach; ?>
- <?php endif;?>
- </tbody>
- </table>
- <div class="dataTables_paginate paging_simple_numbers" id="datatable-checkbox_paginate">
- <div class="row" style="padding-top:10px;">
- <div class="col-xs-7">
-
- </div>
- <div class="col-xs-5" style="font-size: 16px">
- <div class="dataTables_paginate paging_simple_numbers" style="vertical-align:sub;">
- <ul id="yw0" class="yiiPager">
- <li class="next"><a href="<?php echo $this->createUrl('studentinfo/target');?>">返回</a></li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- </div>
- </div>
|