exam.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  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: 'yexam/exam/index',
  8. add_url: 'yexam/exam/add',
  9. edit_url: 'yexam/exam/edit',
  10. del_url: 'yexam/exam/del',
  11. multi_url: 'yexam/exam/multi',
  12. table: 'exam',
  13. }
  14. });
  15. var table = $("#table");
  16. // 初始化表格
  17. table.bootstrapTable({
  18. url: $.fn.bootstrapTable.defaults.extend.index_url+"?type=2",
  19. pk: 'id',
  20. sortName: 'id',
  21. search:false,
  22. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id'),operate:false},
  26. //{field: 'subject_name', title: __('科目名称'), operate:false},
  27. {field: 'exam_name', title: __('考试名称')},
  28. {field: 'num', title: __('题目数量')},
  29. //{field: 'score', title: __('考试总分')},
  30. {field: 'givetime', title: __('考试时长(分钟)')},
  31. {field: 'start_date', title: __('开始时间')},
  32. {field: 'end_date', title: __('结束时间')},
  33. {field: 'status', title: "是否显示",operate: false, formatter: Table.api.formatter.toggle},
  34. //{field: 'sort', title: __('排序'),operate:false},
  35. {field: 'createtime', title: __('创建时间'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  36. {
  37. field: 'operate', align:'center', title: __('Operate'), table: table, events: Table.api.events.operate,
  38. buttons: [
  39. {
  40. name: 'detail',
  41. title: __('抽题组卷'),
  42. text:'抽题组卷',
  43. classname: 'btn btn-xs btn-warning btn-dialog',
  44. icon: 'fa fa-microchip',
  45. extend:'data-area=\'["1100px","700px"]\'',
  46. url: 'yexam/exam/sel_question?exam_id={id}'
  47. },
  48. {
  49. name: 'detail',
  50. title: __('学员考试记录'),
  51. text:'学员考试记录',
  52. classname: 'btn btn-xs btn-default btn-dialog',
  53. extend:'data-area=\'["100%","100%"]\'',
  54. icon: 'fa fa-file-text-o',
  55. url: 'yexam/exam/user_log?exam_id={id}'
  56. },
  57. {
  58. name: 'detail',
  59. title: __('考题管理'),
  60. text:'考题管理',
  61. classname: 'btn btn-xs btn-primary btn-dialog',
  62. extend:'data-area=\'["1000px","700px"]\'',
  63. icon: 'fa fa-th-list ',
  64. url: 'yexam/exam/question?exam_id={id}'
  65. }],
  66. formatter: Table.api.formatter.operate
  67. }
  68. ]
  69. ]
  70. });
  71. // 为表格绑定事件
  72. Table.api.bindevent(table);
  73. $(".nav-tabs a").click(function(){
  74. table.bootstrapTable('refresh', {url:'yexam/exam/index?type='+$(this).attr('data-id')});
  75. })
  76. },
  77. user_log: function () {
  78. // 初始化表格参数配置
  79. Table.api.init({
  80. extend: {
  81. index_url: "yexam/exam/user_log?exam_id="+$("#table").attr('data-id'),
  82. table: 'user_log',
  83. }
  84. });
  85. var table = $("#table");
  86. // 初始化表格
  87. table.bootstrapTable({
  88. url: $.fn.bootstrapTable.defaults.extend.index_url,
  89. pk: 'id',
  90. sortName: 'id',
  91. commonSearch:false,
  92. search:false,
  93. columns: [
  94. [
  95. {checkbox: true},
  96. {field: 'pm', title: __('排名')},
  97. {field: 'reward', title: __('已发放奖励'),searchList:{0:'否',1:'是'},formatter: Table.api.formatter.label},
  98. {field: 'nickname', title: __('姓名')},
  99. {field: 'reward_name', title: __('奖励名称')},
  100. {field: 'reward_image', title: __('奖励图片'),formatter: Table.api.formatter.image, events: Table.api.events.image},
  101. {field: 'nickname', title: __('姓名')},
  102. {field: '', title: __('收货地址'),operate:false,formatter(a,b){
  103. return `
  104. <p>${b.s_name||''}</p>
  105. <p>${b.mobile||''}</p>
  106. <p>${b.area_name||''}${b.address||''}</p>
  107. `
  108. }},
  109. {field: 'score', title: __('分数'),sortable:true},
  110. {field: 'answer_num', title: __('答题数')},
  111. {field: 'right_num', title: __('正确数')},
  112. {field: 'error_num', title: __('错题数')}, {
  113. field: 'operate', align:'center', title: __('Operate'), table: table, events: Table.api.events.operate,
  114. buttons: [
  115. {
  116. name: 'send',
  117. title: __('错题记录'),
  118. text: '错题记录',
  119. classname: 'btn btn-xs btn-warning btn-dialog',
  120. icon: 'fa fa-file-text-o',
  121. url: 'yexam/exam/error_user_log?id={id}'
  122. },
  123. {
  124. name: 'detail',
  125. title: __('下载考卷'),
  126. text: '下载考卷',
  127. classname: 'btn btn-xs btn-primary',
  128. icon: 'fa fa-download',
  129. url: 'yexam/exam/pdf?id={id}',
  130. success: function (data, ret) {
  131. Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
  132. },
  133. }],
  134. formatter: Table.api.formatter.operate
  135. }
  136. ]
  137. ]
  138. });
  139. var page = 1;
  140. var limit = 5;
  141. var loading;
  142. function create_pdf(url,data){
  143. $.ajax({
  144. type:'POST',
  145. url:url,
  146. data:data,
  147. dataType:'json',
  148. success:function (res) {
  149. if(res.code == 0){
  150. if(res.data.length > 0){
  151. data.page++;
  152. create_pdf(url,data);
  153. }else{
  154. top.location.href=res.url
  155. layer.close(loading);
  156. }
  157. }else{
  158. if(res.error){
  159. layer.msg("暂无记录")
  160. }
  161. layer.close(loading);
  162. }
  163. }
  164. })
  165. }
  166. function send_reward(url,data){
  167. $.ajax({
  168. type:'POST',
  169. url:url,
  170. data:data,
  171. dataType:'json',
  172. success:function (res) {
  173. if(res.code === 1){
  174. layer.msg('成功')
  175. $('.btn-refresh').trigger('click')
  176. }else{
  177. layer.msg(res.msg)
  178. }
  179. },
  180. complete(){
  181. layer.close(loading);
  182. }
  183. })
  184. }
  185. $(document).on('click','.btn-pdf',function(){
  186. loading = layer.msg('生成中...', {
  187. icon: 16
  188. ,shade: 0.01
  189. ,time:0
  190. });
  191. var url = 'yexam/exam/pdf_all';
  192. create_pdf(Fast.api.fixurl(url),{exam_id:$("#table").attr('data-id'),page:page,limit:limit});
  193. })
  194. $(document).on('click','.btn-send-reward',function(){
  195. let a=[]
  196. $("#table").bootstrapTable('getSelections').forEach(item=>{
  197. a.push(item.id)
  198. })
  199. if(!a.length){
  200. layer.msg('请选择')
  201. return
  202. }
  203. /*loading = layer.msg('发放中...', {
  204. icon: 16
  205. ,shade: 0.01
  206. ,time:0
  207. });*/
  208. var url = 'yexam/exam/send_reward';
  209. Fast.api.open(`${url}/ids/${a.join(',')}`,$(this).attr('title'),{
  210. area:['500px','60%'],
  211. callback(){
  212. $('.btn-refresh').trigger('click')
  213. }
  214. })
  215. })
  216. // 为表格绑定事件
  217. Table.api.bindevent(table);
  218. },
  219. error_user_log: function () {
  220. // 初始化表格参数配置
  221. Table.api.init({
  222. extend: {
  223. index_url: "yexam/exam/error_user_log?id="+$("#table").attr('data-id'),
  224. table: 'user_log',
  225. }
  226. });
  227. var table = $("#table");
  228. // 初始化表格
  229. table.bootstrapTable({
  230. url: $.fn.bootstrapTable.defaults.extend.index_url,
  231. pk: 'id',
  232. sortName: 'id',
  233. commonSearch:false,
  234. search:false,
  235. columns: [
  236. [
  237. {field: 'question_name', title: '题目名称',align:'left'},
  238. {field: 'type_name', title: '类型'},
  239. {field: 'right_answer', title: '正确答案'},
  240. {field: 'user_answer', title: '学员答案'}
  241. ]
  242. ]
  243. });
  244. // 为表格绑定事件
  245. Table.api.bindevent(table);
  246. },
  247. question: function () {
  248. // 初始化表格参数配置
  249. Table.api.init({
  250. extend: {
  251. index_url: "yexam/exam/question?exam_id="+$("#table").attr('data-id'),
  252. del_url: "yexam/exam/delquestion?exam_id="+$("#table").attr('data-id'),
  253. table: 'exam',
  254. }
  255. });
  256. var table = $("#table");
  257. $(document).on('click', '.btn-question-add', function () {
  258. var url = "yexam/exam/addquestion?exam_id="+$(this).attr('data-id');
  259. Fast.api.open(url, __('Add'), {
  260. callback:function () {
  261. table.bootstrapTable('refresh');
  262. }
  263. });
  264. });
  265. require(['upload'], function(Upload){
  266. Upload.api.plupload($(".btn-import_excel"), function(data, ret){
  267. Layer.msg('导入中', {
  268. icon: 16
  269. ,shade: 0.1,
  270. time:100000
  271. });
  272. $.ajax({
  273. type:'POST',
  274. url:'yexam/exam/import',
  275. data:{file:data.url,exam_id:$(".btn-import_excel").attr('data-id')},
  276. success:function (response) {
  277. if(response.code){
  278. Toastr.success("导入成功");
  279. table.bootstrapTable('refresh');
  280. }else{
  281. Toastr.error(response.msg);
  282. table.bootstrapTable('refresh');
  283. }
  284. Layer.closeAll()
  285. }
  286. })
  287. }, function(data, ret){
  288. });
  289. });
  290. // 初始化表格
  291. table.bootstrapTable({
  292. url: $.fn.bootstrapTable.defaults.extend.index_url,
  293. pk: 'id',
  294. sortName: 'id',
  295. search:false,
  296. columns: [
  297. [
  298. {checkbox: true},
  299. {field: 'id', title: __('题目ID'),operate:false},
  300. {field: 'question_name', align:'left', title: __('题目名称'),operate:'like'},
  301. {field: 'unit_id', title: __('题目来源'),operate:false,formatter: Controller.api.formatter.unit_id},
  302. {field: 'type', title: __('题目类型'), searchList: {"3":__('判断'),"2":__('多选'),"1":__('单选')}, formatter: Table.api.formatter.normal},
  303. {field: 'right_answer', title: __('正确答案'),operate:false,formatter: Controller.api.formatter.type},
  304. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,
  305. buttons: [
  306. {
  307. hidden:function(row){return row.unit_id == 0?false:true},
  308. name: 'detail',
  309. title: __('编辑'),
  310. text:'编辑',
  311. classname: 'btn btn-xs btn-success btn-dialog',
  312. icon: 'fa fa-pencil ',
  313. url: 'yexam/exam/editquestion',
  314. }],
  315. formatter: Table.api.formatter.operate}
  316. ]
  317. ]
  318. });
  319. // 为表格绑定事件
  320. Table.api.bindevent(table);
  321. },
  322. addquestion:function(){
  323. $("#c-type").change(function(){
  324. switch ($(this).val()) {
  325. case "1":
  326. $(".danxuan,.xuanze").show();
  327. $(".panduan,.duoxuan").hide();
  328. break;
  329. case "2":
  330. $(".duoxuan,.xuanze").show();
  331. $(".danxuan,.panduan").hide();
  332. break;
  333. case "3":
  334. $(".panduan").show();
  335. $(".danxuan,.duoxuan,.xuanze").hide();
  336. break;
  337. }
  338. })
  339. Form.api.bindevent($("form[role=form]"), function(data, ret){
  340. //这里是表单提交处理成功后的回调函数,接收来自php的返回数据
  341. Fast.api.close(data);//这里是重点
  342. Toastr.success("成功");//这个可有可无
  343. }, function(data, ret){
  344. Toastr.success("失败");
  345. });
  346. },
  347. editquestion: function () {
  348. $("#c-type").change(function(){
  349. switch ($(this).val()) {
  350. case "1":
  351. $(".danxuan,.xuanze").show();
  352. $(".panduan,.duoxuan").hide();
  353. break;
  354. case "2":
  355. $(".duoxuan,.xuanze").show();
  356. $(".danxuan,.panduan").hide();
  357. break;
  358. case "3":
  359. $(".panduan").show();
  360. $(".danxuan,.duoxuan,.xuanze").hide();
  361. break;
  362. }
  363. })
  364. Controller.api.bindevent();
  365. },
  366. add: function () {
  367. Controller.api.bindevent();
  368. },
  369. sel_question:function(){
  370. require(['jstree'], function () {
  371. var type = 1;
  372. var tid = "";
  373. Table.api.init({
  374. extend: {
  375. has_url: "yexam/exam/has_ques?exam_id="+$("#table").attr('data-id'),
  376. }
  377. });
  378. $(document).on('click', '.btn-ques-add', function () {
  379. var ids = Table.api.selectedids(table);
  380. var exam_id = $(this).attr('data-id');
  381. $.ajax({
  382. type:'POST',
  383. url:'yexam/exam/add_exam_ques',
  384. data:{exam_id:exam_id,ids:ids},
  385. success:function (response) {
  386. if(response.code){
  387. Toastr.success("添加成功");
  388. $.ajax({
  389. type:'POST',
  390. url:'yexam/exam/refresh_tree',
  391. data:{exam_id:exam_id},
  392. dataType:'json',
  393. success:function (response) {
  394. if(response.code){
  395. $('#channeltree').jstree(true).settings.core.data=response.chanelList;
  396. $('#channeltree').jstree(true).refresh();
  397. }else{
  398. Toastr.error(response.msg);
  399. }
  400. }
  401. })
  402. }else{
  403. Toastr.error(response.msg);
  404. }
  405. table.bootstrapTable('refresh');
  406. }
  407. })
  408. });
  409. $(document).on('click', '.btn-ques-del', function () {
  410. var ids = Table.api.selectedids(table);
  411. var exam_id = $(this).attr('data-id');
  412. $.ajax({
  413. type:'POST',
  414. url:'yexam/exam/del_exam_ques',
  415. data:{exam_id:exam_id,ids:ids},
  416. success:function (response) {
  417. if(response.code){
  418. Toastr.success("移除成功");
  419. $.ajax({
  420. type:'POST',
  421. url:'yexam/exam/refresh_tree',
  422. data:{exam_id:exam_id,ids:ids},
  423. dataType:'json',
  424. success:function (response) {
  425. if(response.code){
  426. $('#channeltree').jstree(true).settings.core.data=response.chanelList;
  427. $('#channeltree').jstree(true).refresh();
  428. }else{
  429. Toastr.error(response.msg);
  430. }
  431. }
  432. })
  433. }else{
  434. Toastr.error(response.msg);
  435. }
  436. table.bootstrapTable('refresh');
  437. }
  438. })
  439. });
  440. var table = $("#table");
  441. table.bootstrapTable({
  442. url: $.fn.bootstrapTable.defaults.extend.has_url+"&type="+type,
  443. pk: 'id',
  444. sortName: 'id',
  445. search:false,
  446. commonSearch:false,
  447. showToggle: false,
  448. showColumns: false,
  449. showExport: false,
  450. columns: [
  451. [
  452. {checkbox: true,formatter: function (value,row) {
  453. if(row.checked){
  454. return{checked:true}
  455. }else{
  456. return{checked:false}
  457. }
  458. }},
  459. {field: 'id', title: __('ID')},
  460. {field: 'question_name', align:'left', title: __('题目名称')},
  461. {field: 'type', title: __('题目类型'), searchList: {"3":__('判断'),"2":__('多选'),"1":__('单选')}, formatter: Table.api.formatter.normal},
  462. {field: 'right_answer', title: __('正确答案'),formatter: Controller.api.formatter.type},
  463. ]
  464. ]
  465. });
  466. $(function(){
  467. $(".tab_btn").click(function(){
  468. type = $(this).attr('data-value');
  469. $(this).parent().siblings().removeClass('active');
  470. $(this).parent().addClass('active');
  471. if(type == 3){
  472. $(".btn-unit-add,.btn-type-add,.btn-ques-add").hide();
  473. $(".btn-ques-del").show();
  474. }else if(type == 2){
  475. $(".btn-unit-add,.btn-type-add,.btn-ques-add").show();
  476. $(".btn-ques-del").hide();
  477. }else if(type == 1){
  478. $(".btn-unit-add,.btn-type-add,.btn-ques-add").hide();
  479. $(".btn-ques-del").show();
  480. }
  481. table.bootstrapTable('refresh', {url: $.fn.bootstrapTable.defaults.extend.has_url+"&type="+type+"&tid="+tid,pageNumber:1});
  482. })
  483. })
  484. Table.api.bindevent(table);
  485. $(document).on("click", "#expandall", function () {
  486. $("#channeltree").jstree($(this).prop("checked") ? "open_all" : "close_all");
  487. });
  488. $('#channeltree').on("changed.jstree", function (e, data) {
  489. if(data.node){
  490. tid = data.node.id;
  491. table.bootstrapTable('refresh', {url: $.fn.bootstrapTable.defaults.extend.has_url+"&type="+type+"&tid="+tid,});
  492. }
  493. return false;
  494. });
  495. $('#channeltree').jstree({
  496. "themes": {
  497. "stripes": true
  498. },
  499. "checkbox": {
  500. "keep_selected_style": false,
  501. },
  502. "types": {
  503. "channel": {
  504. "icon": "fa fa-th",
  505. },
  506. "list": {
  507. "icon": "fa fa-list",
  508. },
  509. "link": {
  510. "icon": "fa fa-link",
  511. },
  512. "disabled": {
  513. "check_node": false,
  514. "uncheck_node": false
  515. }
  516. },
  517. 'plugins': ["types"],
  518. "core": {
  519. "multiple": true,
  520. 'check_callback': true,
  521. "data": Config.channelList
  522. }
  523. });
  524. });
  525. },
  526. edit: function () {
  527. $(document).on('change', '#c-type', function () {
  528. if($(this).val() == 5){
  529. $(".form-time").show();
  530. $(".form-time input").attr('data-rule','required');
  531. }else{
  532. $(".form-time").hide();
  533. $(".form-time input").val('');
  534. $(".form-time input").attr('data-rule','*');
  535. $(".form-time input").attr('aria-invalid','');
  536. }
  537. });
  538. Controller.api.bindevent();
  539. },
  540. send_reward: function () {
  541. Controller.api.bindevent();
  542. },
  543. api: {
  544. formatter:{
  545. unit_id: function (value, row, index) {
  546. return value == 0?'本场专属':'章节抽取';
  547. },
  548. type: function (value, row, index) {
  549. return row['type'] == 3?value == 1?'正确':'错误':value;
  550. }
  551. },
  552. bindevent: function () {
  553. Form.api.bindevent($("form[role=form]"));
  554. }
  555. }
  556. };
  557. return Controller;
  558. });