info.js 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. columns: [
  28. [
  29. {field: 'state', checkbox: true, },
  30. {field: 'id', title: '编号'},
  31. {field: 'username', title: __('Username')},
  32. {field: 'nickname', title: __('Nickname')},
  33. // {field: 'groups_text', title: __('Group'), operate:false, formatter: Table.api.formatter.label},
  34. // {field: 'email', title: __('Email')},
  35. {field: 'mobile', title: __('Mobile')},
  36. {field: 'status', title: __("Status"), searchList: {"normal":__('Normal'),"hidden":__('Hidden')}, formatter: Table.api.formatter.status},
  37. {field: 'createtime', title: __('Create time'), formatter: Table.api.formatter.datetime, operate: 'RANGE', addclass: 'datetimerange', sortable: true},
  38. {
  39. field: 'operate', title: __('Operate'), table: table,
  40. formatter: Table.api.formatter.buttons,
  41. buttons: [
  42. {
  43. name: 'dispatch',
  44. text: '编辑',
  45. icon: 'fa fa-pencil',
  46. title: '编辑',
  47. classname: 'btn btn-success btn-xs btn-magic btn-dialog',
  48. url: 'teacher/info/edit',
  49. }, {
  50. name: 'dispatch',
  51. text: '删除',
  52. icon: 'fa fa-trash',
  53. title: '删除',
  54. classname: 'btn btn-danger btn-xs btn-magic btn-ajax',
  55. url: 'teacher/info/del',
  56. confirm: '确定要删除吗?',
  57. success: function (data, ret) {
  58. $(".btn-refresh").trigger("click");
  59. },
  60. error: function (data, ret) {
  61. Layer.alert(ret.msg);
  62. return false;
  63. }
  64. }
  65. ],
  66. // events: Table.api.events.operate,
  67. // formatter: function (value, row, index) {
  68. // if(row.id == Config.admin.id){
  69. // return '';
  70. // }
  71. // return Table.api.formatter.operate.call(this, value, row, index);
  72. // }}
  73. }
  74. ]
  75. ]
  76. });
  77. // 为表格绑定事件
  78. Table.api.bindevent(table);
  79. },
  80. add: function () {
  81. Form.api.bindevent($("form[role=form]"));
  82. },
  83. edit: function () {
  84. Form.api.bindevent($("form[role=form]"));
  85. }
  86. };
  87. return Controller;
  88. });