cashlog.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 'cash/cashlog/index' + location.search,
  8. add_url: 'cash/cashlog/add',
  9. // edit_url: 'cash/cashlog/edit',
  10. del_url: 'cash/cashlog/del',
  11. multi_url: 'cash/cashlog/multi',
  12. table: 'cash_log',
  13. }
  14. });
  15. var table = $("#table");
  16. // 初始化表格
  17. table.bootstrapTable({
  18. url: $.fn.bootstrapTable.defaults.extend.index_url,
  19. pk: 't_id',
  20. sortName: 't_id',
  21. columns: [
  22. [
  23. {checkbox: true},
  24. {field: 't_id', title: __('T_id')},
  25. {field: 'users.user_nickname', title: __('Users.user_nickname')},
  26. {field: 'users.user_tel', title: __('Users.user_tel')},
  27. {field: 'users.user_avatar', title: __('Users.user_avatar'), events: Table.api.events.image, formatter: Table.api.formatter.image},
  28. {field: 'money', title: __('提现金额'), operate:'BETWEEN'},
  29. {field: 'state', title: __('状态')},
  30. {field: 'create_time', title: __('Create_time')},
  31. {field: 'number', title: __('Number')},
  32. {field: 'reason', title: __('Reason')},
  33. {field: 'admin_look', title: __('Admin_look')},
  34. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  35. ]
  36. ]
  37. });
  38. // 为表格绑定事件
  39. Table.api.bindevent(table);
  40. },
  41. add: function () {
  42. Controller.api.bindevent();
  43. },
  44. edit: function () {
  45. Controller.api.bindevent();
  46. },
  47. api: {
  48. bindevent: function () {
  49. Form.api.bindevent($("form[role=form]"));
  50. }
  51. }
  52. };
  53. return Controller;
  54. });