rechargelog.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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: 'user/rechargelog/index' + location.search,
  8. table: 'user_recharge_log',
  9. }
  10. });
  11. var table = $("#table");
  12. //当表格数据加载完成时
  13. table.on('load-success.bs.table', function (e, data) {
  14. //这里可以获取从服务端获取的JSON数据
  15. //这里我们手动设置底部的值
  16. $("#total-money").text(data.extend.total_money);
  17. });
  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: 'id', title: __('Id')},
  27. // {field: 'user_id', title: __('User_id')},
  28. {field: 'user.u_id', title: __('User.u_id')},
  29. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
  30. {field: 'jewel', title: __('Jewel')},
  31. {field: 'money', title: __('Money'), operate:'BETWEEN'},
  32. {field: 'jewelafter', title: __('Jewelafter')},
  33. // {field: 'moneyafter', title: __('Moneyafter'), operate:'BETWEEN'},
  34. {field: 'away', title: __('Away'), searchList: {"1":__('Away 1'),"2":__('Away 2'),"3":__('Away 3'),"4":__('Away 4')}, formatter: Table.api.formatter.normal},
  35. {field: 'platform', title: __('Platform'), searchList: {"1":__('Platform 1'),"2":__('Platform 2'),"3":__('Platform 3')}, formatter: Table.api.formatter.normal},
  36. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  37. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  38. ]
  39. ]
  40. });
  41. // 为表格绑定事件
  42. Table.api.bindevent(table);
  43. },
  44. add: function () {
  45. Controller.api.bindevent();
  46. },
  47. edit: function () {
  48. Controller.api.bindevent();
  49. },
  50. api: {
  51. bindevent: function () {
  52. Form.api.bindevent($("form[role=form]"));
  53. }
  54. }
  55. };
  56. return Controller;
  57. });