manual_grade.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: 'exam/manual_grade/index' + location.search,
  8. add_url: 'exam/manual_grade/add',
  9. edit_url: 'exam/manual_grade/edit',
  10. del_url: 'exam/manual_grade/del',
  11. multi_url: 'exam/manual_grade/multi',
  12. import_url: 'exam/manual_grade/import',
  13. table: 'exam_manual_grade_log',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'id',
  22. fixedColumns: true,
  23. fixedRightNumber: 1,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. {field: 'id', title: __('Id')},
  28. {field: 'admin_id', title: __('Admin_id')},
  29. {field: 'user_id', title: __('User_id')},
  30. {field: 'paper_id', title: __('Paper_id')},
  31. {field: 'room_id', title: __('Room_id')},
  32. {field: 'kind', title: __('Kind'), searchList: {"PAPER":__('Paper'),"ROOM":__('Room')}, formatter: Table.api.formatter.normal},
  33. {field: 'grade_id', title: __('Grade_id')},
  34. {field: 'question_id', title: __('Question_id')},
  35. {field: 'before_score', title: __('Before_score')},
  36. {field: 'after_score', title: __('After_score')},
  37. {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
  38. {field: 'createtime', title: __('Createtime')},
  39. {field: 'updatetime', title: __('Updatetime')},
  40. {field: 'admin.nickname', title: __('Admin.nickname'), operate: 'LIKE'},
  41. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
  42. {field: 'paper.title', title: __('Paper.title'), operate: 'LIKE'},
  43. {field: 'question.title', title: __('Question.title'), operate: 'LIKE'},
  44. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  45. ]
  46. ]
  47. });
  48. // 为表格绑定事件
  49. Table.api.bindevent(table);
  50. },
  51. add: function () {
  52. Controller.api.bindevent();
  53. },
  54. edit: function () {
  55. Controller.api.bindevent();
  56. },
  57. api: {
  58. bindevent: function () {
  59. Form.api.bindevent($("form[role=form]"));
  60. }
  61. }
  62. };
  63. return Controller;
  64. });