wechat_qrcode.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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: 'wechat/wechat_qrcode/index' + location.search,
  8. add_url: 'wechat/wechat_qrcode/add',
  9. edit_url: 'wechat/wechat_qrcode/edit',
  10. del_url: 'wechat/wechat_qrcode/del',
  11. multi_url: 'wechat/wechat_qrcode/multi',
  12. import_url: 'wechat/wechat_qrcode/import',
  13. table: 'wechat_qrcode',
  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: 'third_type', title: __('Third_type'), operate: 'LIKE'},
  27. {field: 'third_id', title: __('Third_id')},
  28. {field: 'ticket', title: __('Ticket'), operate: 'LIKE'},
  29. {field: 'expire_seconds', title: __('Expire_seconds')},
  30. {field: 'status', title: __('Status')},
  31. {field: 'add_time', title: __('Add_time'), operate: 'LIKE'},
  32. {field: 'url', title: __('Url'), operate: 'LIKE', formatter: Table.api.formatter.url},
  33. {field: 'qrcode_url', title: __('Qrcode_url'), operate: 'LIKE', formatter: Table.api.formatter.url},
  34. {field: 'scan', title: __('Scan')},
  35. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  36. ]
  37. ]
  38. });
  39. // 为表格绑定事件
  40. Table.api.bindevent(table);
  41. },
  42. add: function () {
  43. Controller.api.bindevent();
  44. },
  45. edit: function () {
  46. Controller.api.bindevent();
  47. },
  48. api: {
  49. bindevent: function () {
  50. Form.api.bindevent($("form[role=form]"));
  51. }
  52. }
  53. };
  54. return Controller;
  55. });