manual_room_grade.js 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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_room_grade/index' + location.search,
  8. add_url: 'exam/manual_room_grade/add',
  9. edit_url: 'exam/manual_room_grade/edit',
  10. del_url: 'exam/manual_room_grade/del',
  11. multi_url: 'exam/manual_room_grade/multi',
  12. import_url: 'exam/manual_room_grade/import',
  13. table: 'exam_manual_room_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: 'grade_id', title: __('Grade_id')},
  33. {field: 'question_id', title: __('Question_id')},
  34. {field: 'before_score', title: __('Before_score')},
  35. {field: 'after_score', title: __('After_score')},
  36. {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
  37. {field: 'createtime', title: __('Createtime')},
  38. {field: 'updatetime', title: __('Updatetime')},
  39. {field: 'admin.nickname', title: __('Admin.nickname'), operate: 'LIKE'},
  40. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
  41. {field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
  42. {field: 'paper.title', title: __('Paper.title'), operate: 'LIKE'},
  43. {field: 'room.name', title: __('Room.name'), operate: 'LIKE'},
  44. {field: 'question.title', title: __('Question.title'), operate: 'LIKE'},
  45. {field: 'grade.score', title: __('Grade.score')},
  46. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  47. ]
  48. ]
  49. });
  50. // 为表格绑定事件
  51. Table.api.bindevent(table);
  52. },
  53. add: function () {
  54. Controller.api.bindevent();
  55. },
  56. edit: function () {
  57. Controller.api.bindevent();
  58. },
  59. api: {
  60. bindevent: function () {
  61. Form.api.bindevent($("form[role=form]"));
  62. }
  63. }
  64. };
  65. return Controller;
  66. });