userintroapply.js 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: 'userintroapply/index' + location.search,
  8. add_url: 'userintroapply/add',
  9. edit_url: 'userintroapply/edit',
  10. // del_url: 'userintroapply/del',
  11. multi_url: 'userintroapply/multi',
  12. import_url: 'userintroapply/import',
  13. table: 'user_intro_apply',
  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: 'auser.username', title: __('aUser.username')},
  28. {field: 'auser.nickname', title: __('aUser.nickname'), operate: 'LIKE'},
  29. // {field: 'down_uid', title: __('Down_uid')},
  30. {field: 'buser.username', title: __('bUser.username')},
  31. {field: 'buser.nickname', title: __('bUser.nickname'), operate: 'LIKE'},
  32. {field: 'buser.gender', title: __('bUser.gender'), searchList: {"-1":__('bUser.gender -1'),"1":__('bUser.gender 1'),"0":__('bUser.gender 0')}, formatter: Table.api.formatter.normal},
  33. {field: 'buser.jointime', title: __('bUser.jointime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  34. {field: 'remark', title: __('Remark'), operate: 'LIKE'},
  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: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
  38. {field: 'audittime', title: __('Audittime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  39. {field: 'auditremark', title: __('Auditremark'), operate: 'LIKE'},
  40. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  41. ]
  42. ]
  43. });
  44. // 为表格绑定事件
  45. Table.api.bindevent(table);
  46. },
  47. add: function () {
  48. Controller.api.bindevent();
  49. },
  50. edit: function () {
  51. Controller.api.bindevent();
  52. },
  53. api: {
  54. bindevent: function () {
  55. Form.api.bindevent($("form[role=form]"));
  56. }
  57. }
  58. };
  59. return Controller;
  60. });