palmpaysplitaccountlog.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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: 'palmpaysplitaccountlog/index',
  8. table: 'palmpay_split_account_log',
  9. }
  10. });
  11. var table = $("#table");
  12. // 初始化表格
  13. table.bootstrapTable({
  14. url: $.fn.bootstrapTable.defaults.extend.index_url,
  15. pk: 'id',
  16. sortName: 'id',
  17. columns: [
  18. [
  19. {checkbox: true},
  20. {field: 'id', title: __('Id')},
  21. {field: 'order_id', title: __('Order_id')},
  22. {field: 'channel_palmpay_sub_account_id', title: __('Channel_palmpay_sub_account_id')},
  23. {field: 'channel_amount', title: __('Channel_amount'), operate:'BETWEEN'},
  24. {field: 'dz_palmpay_sub_account_id', title: __('Dz_palmpay_sub_account_id')},
  25. {field: 'dz_amount', title: __('Dz_amount'), operate:'BETWEEN'},
  26. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  27. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  28. ]
  29. ]
  30. });
  31. // 为表格绑定事件
  32. Table.api.bindevent(table);
  33. },
  34. add: function () {
  35. Controller.api.bindevent();
  36. },
  37. edit: function () {
  38. Controller.api.bindevent();
  39. },
  40. api: {
  41. bindevent: function () {
  42. Form.api.bindevent($("form[role=form]"));
  43. }
  44. }
  45. };
  46. return Controller;
  47. });