target_error.php 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <link type="text/css" rel="stylesheet" href="/css/needDetail.css" />
  2. <div class="main-content-inner">
  3. <ul class="clearfix main-content-inner-ul">
  4. <?php if(Yii::app()->session['coachInfo']['leader']==1){?>
  5. <li class="pull-left">
  6. <button onclick='location.href="<?php echo $this->createUrl("semester/index");?>"' class="button button_normal button_group button_arrow" data-button="red">学期管理</button>
  7. <img src="/images/line.jpg" style="height:45px;" />
  8. </li>
  9. <?php }?>
  10. <li class="pull-left">
  11. <button onclick='location.href="<?php echo $this->createUrl("teacher/index");?>"' class="button button_normal button_group button_arrow" data-button="red">教师管理</button>
  12. <img src="/images/line.jpg" style="height:45px;" />
  13. </li>
  14. <li class="pull-left">
  15. <button onclick='location.href="<?php echo $this->createUrl("classes/index");?>"' class="button button_normal button_group button_arrow" data-button="red">班级管理</button>
  16. <img src="/images/line.jpg" style="height:45px;" />
  17. </li>
  18. <li class="pull-left">
  19. <button onclick='location.href="<?php echo $this->createUrl("studentinfo/index");?>"' class="button button_normal button_group button_arrow button_active" data-button="red">学生管理</button>
  20. <img src="/images/line.jpg" style="height:45px;" />
  21. </li>
  22. <li class="pull-left">
  23. <button onclick='location.href="<?php echo $this->createUrl("classes/export");?>"' class="button button_normal button_group button_arrow " data-button="red">导出学生</button>
  24. <img src="/images/line.jpg" style="height:45px;" />
  25. </li>
  26. </ul>
  27. <div class="layout-gap">
  28. <section class="anc-top flex status_1>
  29. <div class="flex-one flex">
  30. <span><h1>失败数据记录</h1></span>
  31. <span style="margin-left: 20px;line-height: 69px;color: red">请检查是否存在重复准考证号,不存在的准考证号,目标院校名称不准确</span>
  32. </div>
  33. </section>
  34. <section>
  35. <div class="x_content">
  36. <table id="datatable" class="table table-striped table-bordered" style="width:60%;margin-left: 30px;">
  37. <thead>
  38. <tr>
  39. <th>年级</th>
  40. <th>班级</th>
  41. <th>姓名</th>
  42. <th>系统准考证号</th>
  43. <th>学生目标院校</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. <?php if(!empty($dataList)):?>
  48. <?php foreach ($dataList as $loop): ?>
  49. <?php $item = explode(',',$loop);?>
  50. <tr>
  51. <td><?php echo isset($item[0])?$item[0]:'';?></td>
  52. <td><?php echo isset($item[1])?$item[1]:'';?></td>
  53. <td><?php echo isset($item[2])?$item[2]:'';?></td>
  54. <td><?php echo isset($item[3])?$item[3]:'';?></td>
  55. <td><?php echo isset($item[4])?$item[4]:'';?></td>
  56. </tr>
  57. <?php endforeach; ?>
  58. <?php endif;?>
  59. </tbody>
  60. </table>
  61. <div class="dataTables_paginate paging_simple_numbers" id="datatable-checkbox_paginate">
  62. <div class="row" style="padding-top:10px;">
  63. <div class="col-xs-7">
  64. &nbsp;
  65. </div>
  66. <div class="col-xs-5" style="font-size: 16px">
  67. <div class="dataTables_paginate paging_simple_numbers" style="vertical-align:sub;">
  68. <ul id="yw0" class="yiiPager">
  69. <li class="next"><a href="<?php echo $this->createUrl('studentinfo/target');?>">返回</a></li>
  70. </ul>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. </div>
  76. </section>
  77. </div>
  78. </div>