joinin.js 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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/joinin/index' + location.search,
  8. // add_url: 'guild/joinin/add',
  9. // edit_url: 'guild/joinin/edit',
  10. // del_url: 'guild/joinin/del',
  11. // multi_url: 'guild/joinin/multi',
  12. // import_url: 'guild/joinin/import',
  13. table: 'guild_joinin',
  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. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. {field: 'user_id', title: __('User_id')},
  27. {field: 'guild_id', title: __('Guild_id')},
  28. {field: 'guild.name', title: __('公会名称'), operate: 'LIKE'},
  29. {field: 'join_time', title: __('Join_time'), searchList: {"1":__('Join_time 1'),"2":__('Join_time 2'),"3":__('Join_time 3')}, formatter: Table.api.formatter.normal},
  30. {field: 'user_avatar', title: __('User_avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
  31. {field: 'user_idcard', title: __('User_idcard'), operate: 'LIKE'},
  32. {field: 'user_nickname', title: __('User_nickname'), operate: 'LIKE'},
  33. {field: 'guild_name', title: __('Guild_name'), operate: 'LIKE'},
  34. {field: 'status', title: __('Status'), searchList: {"-1":__('Status -1'),"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
  35. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  36. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  37. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  38. ]
  39. ]
  40. });
  41. // 为表格绑定事件
  42. Table.api.bindevent(table);
  43. },
  44. add: function () {
  45. Controller.api.bindevent();
  46. },
  47. edit: function () {
  48. Controller.api.bindevent();
  49. },
  50. api: {
  51. bindevent: function () {
  52. Form.api.bindevent($("form[role=form]"));
  53. }
  54. }
  55. };
  56. return Controller;
  57. });