english_reading_stu.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <div class="main-content-inner">
  2. <!-- 导航栏开始-->
  3. <?php include(Yii::app()->basePath.'/views/layouts/view_production_navigation.php');?>
  4. <!-- 导航栏结束-->
  5. <div class="page-content">
  6. <div class="row" style="margin:0px">
  7. <div class="col-xs-12">
  8. <!-- PAGE CONTENT BEGINS -->
  9. <div id="dynamic-table_wrapper" class="dataTables_wrapper form-inline no-footer">
  10. <div class="row">
  11. <div class="col-xs-10">
  12. <form method="get" id="form1" action="<?php echo $this->createUrl("print/selectStuByEnglishReading",array("weekId" => $weekId));?>">
  13. <div class="dataTables_length" style="margin: 6px 0px;">
  14. <div class="dataTables_length">
  15. <label><input type="text" class="form-control input-sm" placeholder="请输入学生姓名" name="sname" value="<?php echo $sname;?>"></label>
  16. <button style="padding:4px 12px;"class="label-primary-s bth-s">搜索</button>
  17. </div>
  18. </div>
  19. </form>
  20. </div>
  21. <div class="col-xs-2">
  22. <div class="dataTables_filter" id="dynamic-table_filter" style="padding-top:15px">
  23. <a href="javascript:void(0);" class="btn label-primary-green btn-sm" id="selectPrint">
  24. <i style="font-style: normal;" class="fa fa-print"></i> 下载
  25. </a>
  26. <a href="javascript:void(0);" class="btn label-primary-green btn-sm" id="selectPrintToolsWkb">
  27. <i style="font-style: normal;" class="fa fa-print"></i> 打印
  28. </a>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="row">
  33. <div class="col-xs-12" style="font-weight:bold;padding:0px 15px">
  34. <?php echo isset($name)?$name:'';?>
  35. </div>
  36. </div>
  37. <table id="dynamic-table" class="table table-striped table-bordered table-hover dataTable no-footer DTTT_selectable" style="font-size:12px">
  38. <thead>
  39. <tr>
  40. <th class="center">
  41. <input type="checkbox" class="ace selectAll">
  42. </th>
  43. <th>序号</th>
  44. <th>名称</th>
  45. <th>产品类型</th>
  46. <th>学生名称</th>
  47. <th>学生编号</th>
  48. <th>PDF</th>
  49. <th>下载功能</th>
  50. </tr>
  51. </thead>
  52. <tbody>
  53. <?php if(isset($list) && $list):foreach($list as $k=>$rt):?>
  54. <tr>
  55. <td class="center">
  56. <?php if (($rt['is_pdf'] == 1)) { ?>
  57. <input type="checkbox" class="ace myselect" value="<?php echo $rt['stu_id'];?>" stnm="<?php echo $rt['stu_name'];?>">
  58. <?php } else { ?>
  59. <input type="checkbox" disabled='disabled' class="ace myselect" value="<?php echo $rt['stu_id'];?>" stnm="<?php echo $rt['stu_name'];?>">
  60. <?php } ?>
  61. </td>
  62. <td><?php echo $k;?></td>
  63. <td><?php echo $rt['name'];?></td>
  64. <td><?php echo isset($rt['product_type_name'])?$rt['product_type_name']:'';?></td>
  65. <td><?php echo $rt['stu_name'];?></td>
  66. <td><?php echo $rt['stu_id'];?></td>
  67. <td>
  68. <?php if ($rt['is_pdf'] == 0): ?>
  69. <span class="label label-sm label-danger" style="font-size:12px">未生成</span> <!--红-->
  70. <?php elseif ($rt['is_pdf'] == 1): ?>
  71. <span class="label label-sm label-success" style="font-size:12px">已生成</span><!--绿-->
  72. <?php elseif ($rt['is_pdf'] == 9): ?>
  73. <span class="label label-sm" style="font-size:12px;background-color:gray;">已删除</span><!--灰-->
  74. <?php else: ?>
  75. <span class="label label-sm" style="font-size:12px;background-color:gray;">未知状态</span><!--灰-->
  76. <?php endif; ?>
  77. </td>
  78. <td>
  79. <?php
  80. if(isset($limitstu)){
  81. if($limitstu==0){
  82. echo '<span class="label label-sm label-success" style="font-size:12px">已开通</span>';
  83. }elseif($limitstu==-1){
  84. echo '<span class="label label-sm label-danger" style="font-size:12px">未开通</span>';
  85. }else{
  86. // if(isset($limitstu[$rt['stu_id']])){
  87. if(is_array($limitstu) && in_array($rt['stu_id'],$limitstu,true)){
  88. echo '<span class="label label-sm label-success" style="font-size:12px">已开通</span>';
  89. }else{
  90. echo '<span class="label label-sm label-danger" style="font-size:12px">未开通</span>';
  91. }
  92. }
  93. }else{
  94. echo '<span class="label label-sm label-danger" style="font-size:12px">未开通</span>';
  95. }
  96. ?>
  97. </td>
  98. </tr>
  99. <?php endforeach;else:?>
  100. <tr><td colspan="6">暂无数据!</td></tr>
  101. <?php endif;?>
  102. </tbody>
  103. </table>
  104. </div>
  105. <input type="hidden" name="weekId" id="weekId" value="<?php echo $weekId;?>" />
  106. <!-- PAGE CONTENT ENDS -->
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. <?php require_once "_print.php"?>
  112. <script type="text/javascript">
  113. //type = "<?php // echo $type;?>";
  114. //if(type == "isp"){
  115. // type = 2;
  116. // improveName = "个性化学习方案";
  117. //}
  118. //else if(type == "studytrend"){
  119. // type = 3;
  120. // improveName = "个性化学习宝";
  121. //}
  122. //else if(type == "third_isp"){
  123. // type = 3;
  124. // improveName = "个性化学习宝";
  125. //}
  126. //else{
  127. // type = 0;
  128. //}
  129. html = ""+
  130. '<div style="padding:20px 30px 0px 30px">'+
  131. '<div style="padding:8px 0;">请复制下方链接下载产品。</div>'+
  132. '<div id="downloadUrl" style="white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:455px;"></div>'+
  133. '<div class="row" style="margin:30px auto 0px auto;text-align:center"><button id="confirm" class="label-primary-s bth-s" style="padding:4px 12px;margin:5px 0 10px 15px;background:gray;border-color:gray;">关闭</button>'+
  134. '</div>'+
  135. '</div>'+
  136. "";
  137. $(function(){
  138. // 全选\反选
  139. $(".selectAll").on('click',function(event){
  140. if ($(this).prop("checked")) {
  141. var s_obj = $(".myselect");
  142. var s_len = s_obj.length;
  143. for (var i=0;i<s_len;i++) {
  144. if (!s_obj[i].disabled) {
  145. s_obj[i].checked=true;
  146. }
  147. }
  148. } else {
  149. $(".myselect").prop("checked",false);
  150. }
  151. });
  152. //
  153. //
  154. $("#selectPrint").click(function(){
  155. var weekId = $("#weekId").val();
  156. // 判断是否有选中
  157. if (!$("input[class='ace myselect']").is(':checked')) {
  158. layer.msg('请至少选择一个学生!');return false;
  159. }
  160. layer.msg("您确定下载产品吗?", {
  161. time: 0,
  162. btn: ['确定', '取消'],
  163. yes: function(index){
  164. layer.close(index);
  165. var result = [];
  166. $(".myselect").each(function(m,n){
  167. if ($(this).prop('checked')) {
  168. if ($(this).val() && $(this).attr("stnm")) {
  169. result.push($(this).val());
  170. }
  171. }
  172. })
  173. if (result.length < 1) {
  174. layer.msg('未找到要下载的学生!');return false;
  175. }
  176. $.ajax({
  177. url: "<?php echo $this->createUrl('productdownload/getEnglishReadingFile');?>",
  178. type: "GET",
  179. dataType: "json",
  180. data: {"weekId": weekId, "studentsIds":result},
  181. timeout: <?php echo Yii::app()->params["product_download_time_limit"];?>,
  182. beforeSend:function(){
  183. layer.msg("下载中请稍后...",{"time": <?php echo Yii::app()->params["product_download_time_limit"];?>});
  184. },
  185. error: function (jqXHR, textStatus, errorThrown) {
  186. if(textStatus=="timeout"){
  187. $.ajax({
  188. type:'GET',
  189. url: "<?php echo $this->createUrl("productdownload/addEnReadingTask");?>",
  190. data: {"weekId": weekId, "studentsIds":result},
  191. dataType: "json",
  192. success:function (data) {
  193. layer.alert('文件正在打包,请去右上角“下载”窗口获取下载链接!',{
  194. icon: 1,
  195. yes:function(){
  196. layer.closeAll();
  197. }
  198. });
  199. }
  200. })
  201. }else {
  202. layer.msg('返回失败!',{
  203. icon: 5
  204. }, function(){
  205. layer.closeAll();
  206. });
  207. }
  208. },
  209. success: function (data){
  210. layer.closeAll();
  211. if(data.success == 1||data.success == 2){
  212. layer.open({
  213. type: 1,
  214. area: ['550px', '220px'],
  215. title: "下载产品",
  216. content: html,
  217. success: function(index, layerObj){
  218. jQuery("#downloadUrl").html('下载地址:<span style=""><input id="url" type="text" size="40" readonly value="'+data.downloadPath+'" /></span><button id="copy" class="label-primary-s bth-s" style="padding:4px 12px;margin:5px 0 10px 15px;">全选</button>');
  219. jQuery("#confirm, #cancel").on("click", function(){
  220. layer.close(layerObj);
  221. });
  222. jQuery("#copy").on("click", function(){
  223. jQuery("#url").select();
  224. });
  225. },
  226. end: function(){
  227. }
  228. });
  229. }else if(data.success == 3){
  230. layer.alert('文件正在打包,请去右上角“下载”窗口获取下载链接!',{
  231. icon: 1,
  232. yes:function(){
  233. layer.closeAll();
  234. }
  235. });
  236. }
  237. else if(data.success == 0){
  238. layer.msg(data.message, {"time": 3000});
  239. }
  240. },
  241. });
  242. }
  243. });
  244. });
  245. })
  246. </script>