joininlog.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 'guild/joininlog/index' + location.search,
  8. del_url: 'guild/joininlog/del',
  9. multi_url: 'guild/joininlog/multi',
  10. import_url: 'guild/joininlog/import',
  11. table: 'guild_joinin_log',
  12. }
  13. });
  14. var table = $("#table");
  15. // 初始化表格
  16. table.bootstrapTable({
  17. url: $.fn.bootstrapTable.defaults.extend.index_url,
  18. pk: 'id',
  19. sortName: 'id',
  20. columns: [
  21. [
  22. {checkbox: true},
  23. {field: 'id', title: __('Id')},
  24. {field: 'user_id', title: __('User_id')},
  25. {field: 'operator', title: __('Operator')},
  26. {field: 'user_nickname', title: __('User_nickname'), operate: 'LIKE'},
  27. {field: 'user_u_id', title: __('User_u_id')},
  28. {field: 'guild_id', title: __('Guild_id')},
  29. {field: 'guild_name', title: __('Guild_name'), operate: 'LIKE'},
  30. {field: 'guild_g_id', title: __('Guild_g_id')},
  31. {field: 'sign_time_slot', title: __('Sign_time_slot'), operate: 'LIKE'},
  32. {field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"-1":__('Status -1')}, formatter: Table.api.formatter.status},
  33. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  34. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  35. ]
  36. ]
  37. });
  38. // 为表格绑定事件
  39. Table.api.bindevent(table);
  40. },
  41. add: function () {
  42. Controller.api.bindevent();
  43. },
  44. edit: function () {
  45. Controller.api.bindevent();
  46. },
  47. api: {
  48. bindevent: function () {
  49. Form.api.bindevent($("form[role=form]"));
  50. }
  51. }
  52. };
  53. return Controller;
  54. });