practice.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'student/practice/index' + location.search,
  8. table: 'teacher_collection',
  9. }
  10. });
  11. var table = $("#table");
  12. // 初始化表格
  13. table.bootstrapTable({
  14. url: $.fn.bootstrapTable.defaults.extend.index_url,
  15. pk: 'exam_collection_id',
  16. sortName: 'exam_collection_id',
  17. fixedColumns: true,
  18. fixedRightNumber: 1,
  19. searchFormVisible:true,
  20. columns: [
  21. [
  22. {checkbox: true},
  23. {field: 'exam_collection_id', title: __('编号')},
  24. {field: 'exam_collection_name', title: __('Exam_collection_name'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  25. {field: 'sim_type', title: __('Sim_type'),searchList:{"0001":"FZD04B型侦毒器","0002":"FZB006型毒剂报警器","0003":"防化兵用毒剂报警器"},formatter: Table.api.formatter.simtype},
  26. {field: 'question_setting_method', title: __('Question_setting_method'),searchList:{"1":"系统随机","2":"教师自选","3":"任务自选"},formatter: Table.api.formatter.simmethod},
  27. // {field: 'exam_collection_type', title: __('Exam_collection_type'),operate: false,formatter: function (value, row, index) {
  28. // return '考试';
  29. // }
  30. // },
  31. // {
  32. // field: 'exam_collection_state',searchList:{"2":"打开","3":"关闭"},
  33. // title: __('Exam_collection_state'),
  34. // align: 'center',
  35. // table: table,disable:true,
  36. // formatter: Table.api.formatter.collectonstate
  37. // },
  38. {field: 'limit_duration', title: __('Limit_duration')},
  39. {field: 'start_time', title: __('Start_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  40. {field: 'end_time', title: __('End_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  41. // {field: 'create_user_id', title: __('Create_user_id')},
  42. {field: 'create_by', title: __('Create_by'), operate: 'LIKE'},
  43. // {field: 'createtime', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  44. // {field: 'update_by', title: __('Update_by'), operate: 'LIKE'},
  45. // {field: 'update_time', title: __('Update_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false},
  46. // {field: 'remark', title: __('Remark'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  47. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  48. {field: 'operate', title: __('Operate'), table: table,
  49. events: Table.api.events.operate,
  50. // formatter: Table.api.formatter.operate,
  51. formatter: Table.api.formatter.buttons,
  52. buttons: [
  53. {
  54. name: 'dispatch',
  55. text: '进入',
  56. icon: 'fa fa-hand-pointer-o',
  57. title: '进入',
  58. // visible: function (row){
  59. // if(row.is_user_examed==0){
  60. // return true;
  61. // }
  62. // return false;
  63. // },
  64. classname: 'btn btn-info btn-xs btn-magic btn-addtabs',
  65. extend: 'data-area=\'["85%","85%"]\'',
  66. url: 'student/practice/into',
  67. }
  68. ],
  69. }
  70. ]
  71. ]
  72. });
  73. // 为表格绑定事件
  74. Table.api.bindevent(table);
  75. },
  76. add: function () {
  77. Controller.api.bindevent();
  78. },
  79. into: function () {
  80. // Controller.api.bindevent();
  81. // Form.api.bindevent($("form[role=form]"), function(data, ret) {
  82. // if(ret.code==1){
  83. // Backend.api.addtabs( ret.url,'正在练习');
  84. // }
  85. // });
  86. $(document).on('click', '.btn-startexam', function () {
  87. if(Config.is_fault){
  88. // $.ajax({
  89. // url: Config.url_type+"/sim/real-exam/student/exam/start/"+Config.exam_id,
  90. // type: 'get',
  91. // success: function (data) {
  92. // console.log(data);
  93. // if(data.code==200){
  94. // window.location.href = '/ZQOtIMLKud.php/student/collection/examing/ids/'+Config.exam_id;
  95. // }else{
  96. // Layer.alert(data.msg);
  97. // return;
  98. // }
  99. // }
  100. // });
  101. }else{
  102. window.location.href = '/ZQOtIMLKud.php/student/practice/examing/ids/'+Config.exam_id;
  103. }
  104. });
  105. },
  106. examing: function () {
  107. $(document).ready(function() {
  108. var countdownTime = Config.timer; // 倒计时时间,单位为秒
  109. var display = $('#timer');
  110. var fenzhong = 0;
  111. var timer = setInterval(function() {
  112. var minutes = parseInt(countdownTime / 60, 10);
  113. var seconds = parseInt(countdownTime % 60, 10);
  114. minutes = minutes < 10 ? "0" + minutes : minutes;
  115. seconds = seconds < 10 ? "0" + seconds : seconds;
  116. display.text(minutes + "分" + seconds+'秒');
  117. // console.log(minutes.replace("0-",''));
  118. // console.log(parseInt(minutes.replace("0-",'')));
  119. if (--countdownTime < 0) {
  120. // clearInterval(timer);
  121. $(".djs").html('已到练习结束时间,10分钟内系统自动交卷。')
  122. // display.text("时间到!");
  123. }
  124. if(minutes<1){
  125. fenzhong = parseInt(minutes.replace("0-",''));
  126. console.log(fenzhong);
  127. if(fenzhong==7){
  128. $('#update-form').submit();
  129. clearInterval(timer);
  130. }
  131. }
  132. }, 1000);
  133. //五秒刷新,同步更换件列表数据
  134. if(Config.isloading==1 && countdownTime>0){
  135. setInterval(function() {
  136. window.location.reload();
  137. }, 30000);
  138. }
  139. });
  140. $(document).on('click', '.btn-replace', function () {
  141. console.log($(".other_replace").val());
  142. $.ajax({
  143. url: "student/collection/replace/ids/"+Config.ids,
  144. type: 'post',
  145. data: {
  146. other_replace: $(".other_replace").val(),
  147. other_report: $(".other_report").val(),
  148. },
  149. success: function (data) {
  150. if(data.code==1){
  151. window.location.reload();
  152. }
  153. if(data.code==0){
  154. Layer.alert(data.msg);
  155. }
  156. }
  157. });
  158. });
  159. $(document).on("fa.event.appendfieldlist", "#second-fieldlist .btn-append", function (e, obj) {
  160. //绑定动态下拉组件
  161. Form.events.selectpage(obj);
  162. });
  163. Form.api.bindevent($("form[role=form]"), function(data, ret) {
  164. if(ret.code==1){
  165. Backend.api.addtabs( ret.url,'得分分析');
  166. }
  167. });
  168. },
  169. analysis: function () {
  170. Form.api.bindevent($("form[role=form]"), function(data, ret) {
  171. if(ret.code==1){
  172. Backend.api.addtabs( ret.url);
  173. parent.window.reload();
  174. }
  175. });
  176. },
  177. edit: function () {
  178. Controller.api.bindevent();
  179. },
  180. api: {
  181. bindevent: function () {
  182. Form.api.bindevent($("form[role=form]"));
  183. }
  184. }
  185. };
  186. return Controller;
  187. });