packagegift.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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: 'packagegift/index/package_id/' + Config.package_id + location.search,
  8. add_url: 'packagegift/add/package_id/' + Config.package_id,
  9. edit_url: 'packagegift/edit',
  10. del_url: 'packagegift/del',
  11. multi_url: 'packagegift/multi',
  12. import_url: 'packagegift/import',
  13. table: 'package_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. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. {field: 'package_id', title: __('Package_id')},
  27. {field: 'coupon_id', title: __('Coupon_id')},
  28. {field: 'number', title: __('Number')},
  29. {field: 'package.title', title: __('Package.title'), operate: 'LIKE'},
  30. {field: 'coupons.name', title: __('Coupons.name'), operate: 'LIKE'},
  31. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  32. ]
  33. ]
  34. });
  35. // 为表格绑定事件
  36. Table.api.bindevent(table);
  37. },
  38. add: function () {
  39. Controller.api.bindevent();
  40. },
  41. edit: function () {
  42. Controller.api.bindevent();
  43. },
  44. api: {
  45. bindevent: function () {
  46. $("#c-company_id").data("params",function(){
  47. return {custom:{status:1}};
  48. });
  49. $("#c-package_id").data("params",function(){
  50. return {custom:{company_id:$('#c-company_id').val(),status:1}};
  51. });
  52. $("#c-coupon_id").data("params",function(){
  53. return {custom:{company_id:$('#c-company_id').val(),status:1}};
  54. });
  55. Form.api.bindevent($("form[role=form]"));
  56. }
  57. }
  58. };
  59. return Controller;
  60. });