coupon.js 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: async function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'coupon/index' + location.search,
  8. add_url: 'coupon/add',
  9. edit_url: 'coupon/edit',
  10. //del_url: 'coupon/del',
  11. multi_url: 'coupon/multi',
  12. import_url: 'coupon/import',
  13. table: 'coupon',
  14. }
  15. });
  16. var table = $("#table");
  17. let types = await $.getJSON('coupon/types')
  18. // 初始化表格
  19. table.bootstrapTable({
  20. url: $.fn.bootstrapTable.defaults.extend.index_url,
  21. pk: 'id',
  22. sortName: 'id',
  23. columns: [
  24. [
  25. //{checkbox: true},
  26. {field: 'type', title: __('Type'), searchList:types,formatter: Table.api.formatter.normal},
  27. {field: 'max', title: __('Max'), operate: 'BETWEEN'},
  28. {field: 'amount', title: __('Amount')+"/折", operate: 'BETWEEN'},
  29. {
  30. field: 'start_time',
  31. title: __('Start_time'),
  32. operate: 'RANGE',
  33. addclass: 'datetimerange',
  34. autocomplete: false
  35. },
  36. {
  37. field: 'end_time',
  38. title: __('End_time'),
  39. operate: 'RANGE',
  40. addclass: 'datetimerange',
  41. autocomplete: false
  42. },
  43. {field: 'num', title: __('Num')},
  44. {
  45. field: 'operate',
  46. title: __('Operate'),
  47. table: table,
  48. events: Table.api.events.operate,
  49. formatter: Table.api.formatter.operate
  50. }
  51. ]
  52. ]
  53. });
  54. // 为表格绑定事件
  55. Table.api.bindevent(table);
  56. },
  57. add: function () {
  58. Controller.api.bindevent();
  59. },
  60. edit: function () {
  61. Controller.api.bindevent();
  62. },
  63. api: {
  64. bindevent: function () {
  65. Form.api.bindevent($("form[role=form]"));
  66. }
  67. }
  68. };
  69. return Controller;
  70. });