university_event_apply_info.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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: 'university_event_apply_info/index' + location.search,
  8. // add_url: 'university_event_apply_info/add',
  9. // edit_url: 'university_event_apply_info/edit',
  10. del_url: 'university_event_apply_info/del',
  11. multi_url: 'university_event_apply_info/multi',
  12. import_url: 'university_event_apply_info/import',
  13. table: 'university_event_apply_info',
  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. showToggle: false,// 禁用视图切换
  23. search:false,// 禁用默认搜索框
  24. columns: [
  25. [
  26. {checkbox: true},
  27. // {field: 'id', title: __('Id')},
  28. // {field: 'user_id', title: __('User_id')},
  29. // {field: 'event_id', title: __('Event_id')},
  30. {field: 'order_no', title: __('Order_no'), operate: 'LIKE'},
  31. {field: 'name', title: __('Name'), operate: 'LIKE'},
  32. {field: 'phone', title: __('Phone'), operate: 'LIKE'},
  33. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  34. ]
  35. ]
  36. });
  37. // 为表格绑定事件
  38. Table.api.bindevent(table);
  39. },
  40. add: function () {
  41. Controller.api.bindevent();
  42. },
  43. edit: function () {
  44. Controller.api.bindevent();
  45. },
  46. api: {
  47. bindevent: function () {
  48. Form.api.bindevent($("form[role=form]"));
  49. }
  50. }
  51. };
  52. return Controller;
  53. });