videoplayuserplay.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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: 'videoplayuserplay/index' + location.search,
  8. add_url: 'videoplayuserplay/add',
  9. edit_url: 'videoplayuserplay/edit',
  10. del_url: 'videoplayuserplay/del',
  11. multi_url: 'videoplayuserplay/multi',
  12. import_url: 'videoplayuserplay/import',
  13. table: 'video_play_userplay',
  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.mobile', title: __('User.mobile'), operate: 'LIKE'},
  30. {field: 'video_id', title: __('Video_id')},
  31. {field: 'video.title', title: __('Video.title'), operate: 'LIKE'},
  32. {field: 'video.image', title: __('Video.image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
  33. {field: 'sn', title: __('Sn'), operate: 'LIKE'},
  34. {field: 'start_time', title: __('Start_time'), operate: 'LIKE'},
  35. {field: 'end_time', title: __('End_time'), operate: 'LIKE'},
  36. {field: 'csource', title: __('Csource'), operate: 'LIKE'},
  37. {field: 'trace_id', title: __('Trace_id'), operate: 'LIKE'},
  38. {field: 'istry', title: __('Istry'), searchList: {"0":__('Istry 0'),"1":__('Istry 1')}, formatter: Table.api.formatter.normal},
  39. {field: 'start_posi', title: __('Start_posi')},
  40. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  41. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  42. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  43. ]
  44. ]
  45. });
  46. // 为表格绑定事件
  47. Table.api.bindevent(table);
  48. },
  49. add: function () {
  50. Controller.api.bindevent();
  51. },
  52. edit: function () {
  53. Controller.api.bindevent();
  54. },
  55. api: {
  56. bindevent: function () {
  57. Form.api.bindevent($("form[role=form]"));
  58. }
  59. }
  60. };
  61. return Controller;
  62. });