giftusertyping.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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: 'giftusertyping/index' + location.search,
  8. add_url: 'giftusertyping/add',
  9. // edit_url: 'giftusertyping/edit',
  10. // del_url: 'giftusertyping/del',
  11. multi_url: 'giftusertyping/multi',
  12. import_url: 'giftusertyping/import',
  13. table: 'gift_user_typing',
  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. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('Id')},
  26. // {field: 'user_id', title: __('User_id')},
  27. // {field: 'user_to_id', title: __('User_to_id')},
  28. {field: 'user.username', title: __('User.username'), operate: 'LIKE'},
  29. {field: 'touser.username', title: __('Touser.username'), operate: 'LIKE'},
  30. {field: 'gift_id', title: __('Gift_id')},
  31. {field: 'gift_name', title: __('Gift_name'), operate: 'LIKE'},
  32. {field: 'number', title: __('Number')},
  33. {field: 'price', title: __('Price')},
  34. {field: 'total_price', title: __('Total_Price')},
  35. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  36. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  37. ]
  38. ]
  39. });
  40. // 为表格绑定事件
  41. Table.api.bindevent(table);
  42. },
  43. add: function () {
  44. Controller.api.bindevent();
  45. },
  46. edit: function () {
  47. Controller.api.bindevent();
  48. },
  49. api: {
  50. bindevent: function () {
  51. Form.api.bindevent($("form[role=form]"));
  52. }
  53. }
  54. };
  55. return Controller;
  56. });