info.js 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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: 'teacher/info/index',
  8. add_url: 'teacher/info/add',
  9. edit_url: 'teacher/info/edit',
  10. del_url: 'teacher/info/del',
  11. // multi_url: 'auth/admin/multi',
  12. }
  13. });
  14. var table = $("#table");
  15. //在表格内容渲染完成后回调的事件
  16. table.on('post-body.bs.table', function (e, json) {
  17. $("tbody tr[data-index]", this).each(function () {
  18. if (parseInt($("td:eq(1)", this).text()) == Config.admin.id) {
  19. $("input[type=checkbox]", this).prop("disabled", true);
  20. }
  21. });
  22. });
  23. // 初始化表格
  24. table.bootstrapTable({
  25. url: $.fn.bootstrapTable.defaults.extend.index_url,
  26. searchFormVisible:true,
  27. search:false,
  28. showExport:false,
  29. showToggle:false,
  30. showColumns: false,
  31. columns: [
  32. [
  33. {field: 'state', checkbox: true, },
  34. // {field: 'id', title: '编号'},
  35. {field: 'username', title: __('Username'),operate: 'like'},
  36. {field: 'nickname', title: __('Nickname'),operate: 'like'},
  37. // {field: 'groups_text', title: __('Group'), operate:false, formatter: Table.api.formatter.label},
  38. // {field: 'email', title: __('Email')},
  39. {field: 'mobile', title: __('Mobile'),operate: 'like'},
  40. {field: 'status', title: __("Status"), searchList: {"normal":__('Normal'),"hidden":__('Hidden')}, formatter: Table.api.formatter.status},
  41. {field: 'createtime', title: __('Create time'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
  42. {
  43. field: 'operate', title: __('Operate'), table: table,
  44. formatter: Table.api.formatter.buttons,
  45. buttons: [
  46. {
  47. name: 'dispatch',
  48. text: '编辑',
  49. icon: 'fa fa-pencil',
  50. title: '编辑',
  51. classname: 'btn btn-success btn-xs btn-magic btn-dialog',
  52. url: 'teacher/info/edit',
  53. }, {
  54. name: 'dispatch',
  55. text: '删除',
  56. icon: 'fa fa-trash',
  57. title: '删除',
  58. classname: 'btn btn-danger btn-xs btn-magic btn-ajax',
  59. url: 'teacher/info/del',
  60. confirm: '确定要删除吗?',
  61. success: function (data, ret) {
  62. $(".btn-refresh").trigger("click");
  63. },
  64. error: function (data, ret) {
  65. Layer.alert(ret.msg);
  66. return false;
  67. }
  68. }
  69. ],
  70. // events: Table.api.events.operate,
  71. // formatter: function (value, row, index) {
  72. // if(row.id == Config.admin.id){
  73. // return '';
  74. // }
  75. // return Table.api.formatter.operate.call(this, value, row, index);
  76. // }}
  77. }
  78. ]
  79. ]
  80. });
  81. // 为表格绑定事件
  82. Table.api.bindevent(table);
  83. },
  84. add: function () {
  85. Form.api.bindevent($("form[role=form]"));
  86. },
  87. edit: function () {
  88. Form.api.bindevent($("form[role=form]"));
  89. }
  90. };
  91. return Controller;
  92. });