viplog.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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: 'viplog/index' + location.search,
  8. // add_url: 'viplog/add',
  9. // edit_url: 'viplog/edit',
  10. // del_url: 'viplog/del',
  11. // multi_url: 'viplog/multi',
  12. // import_url: 'viplog/import',
  13. table: 'vip_log',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'id',
  22. fixedColumns: true,
  23. fixedRightNumber: 1,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. {field: 'id', title: __('Id')},
  28. {field: 'user_id', title: __('User_id')},
  29. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
  30. {field: 'user.mobile', title: __('User.mobile'), operate: 'LIKE'},
  31. {field: 'vip_id', title: __('Vip_id')},
  32. {field: 'title', title: __('Title'), operate: 'LIKE'},
  33. {field: 'level', title: __('Level'), operate: 'LIKE'},
  34. {field: 'growthvalue', title: __('Growthvalue')},
  35. {field: 'free', title: __('Free')},
  36. {field: 'price', title: __('Price'), operate: 'LIKE'},
  37. {field: 'endtime', title: __('Endtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  38. {field: 'vipdiscount', title: __('Vipdiscount')},
  39. {field: 'birthdiscount', title: __('Birthdiscount')},
  40. {field: 'manypeople', title: __('Manypeople')},
  41. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  42. // {field: 'vip.title', title: __('Vip.title'), operate: 'LIKE'},
  43. // {field: 'vip.level', title: __('Vip.level'), operate: 'LIKE'},
  44. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  45. ]
  46. ]
  47. });
  48. // 为表格绑定事件
  49. Table.api.bindevent(table);
  50. },
  51. add: function () {
  52. Controller.api.bindevent();
  53. },
  54. edit: function () {
  55. Controller.api.bindevent();
  56. },
  57. api: {
  58. bindevent: function () {
  59. Form.api.bindevent($("form[role=form]"));
  60. }
  61. }
  62. };
  63. return Controller;
  64. });