user_pay_rank.js 2.6 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: 'user_pay_rank/index' + location.search,
  8. add_url: 'user_pay_rank/add',
  9. edit_url: 'user_pay_rank/edit',
  10. del_url: 'user_pay_rank/del',
  11. multi_url: 'user_pay_rank/multi',
  12. import_url: 'user_pay_rank/import',
  13. table: 'user_pay_rank',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'total_price',
  22. search:false, //搜索id
  23. searchFormVisible:true,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. // {field: 'id', title: __('Id'), operate: false, visible:false},
  28. {field: 'no', title: __('No'),operate:false},
  29. {field: 'user_id', title: __('User_id')},
  30. {field: 'user.avatar', title: __('User.avatar'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  31. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
  32. {field: 'total_price', title: __('Total_price'), operate: false, sortable: true},
  33. {field: 'createtime', title: __('Createtime'),defaultValue:Moment().startOf('day').format('YYYY-MM-DD 00:00:00') + ' - ' + Moment().endOf('day').format('YYYY-MM-DD 23:59:59'), operate:'RANGE', visible:false, addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  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. });