recharge_gift.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: 'recharge_gift/index/config_id/' + Config.config_id + location.search,
  8. add_url: 'recharge_gift/add/config_id/'+ Config.config_id,
  9. edit_url: 'recharge_gift/edit',
  10. del_url: 'recharge_gift/del',
  11. multi_url: 'recharge_gift/multi',
  12. import_url: 'recharge_gift/import',
  13. table: 'recharge_gift',
  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. search:false,
  23. columns: [
  24. [
  25. {checkbox: true},
  26. {field: 'id', title: __('Id')},
  27. {field: 'config_id', title: __('Config_id')},
  28. {field: 'number', title: __('Number'),operate: false},
  29. {field: 'coupon_id', title: __('Coupon_id'), operate: false},
  30. {field: 'coupons.name', title: __('Coupons.name'), operate: 'LIKE'},
  31. {field: 'coupons.info', title: __('Coupons.info'), operate: false},
  32. {field: 'coupons.days', title: __('Coupons.days'), operate: false},
  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. });