exam.js 30 KB

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