video.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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: 'video/index' + location.search,
  8. add_url: 'video/add',
  9. edit_url: 'video/edit',
  10. del_url: 'video/del',
  11. multi_url: 'video/multi',
  12. import_url: 'video/import',
  13. table: 'video',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. columns: [
  22. [
  23. {checkbox: true},
  24. {field: 'id', title: __('Id')},
  25. {field: 'name', title: __('Name'), operate: 'LIKE'},
  26. // {field: 'video_file', title: __('Video_file'), operate: false, formatter: Table.api.formatter.file},
  27. {field: 'size', title: __('Size'), operate: 'LIKE'},
  28. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  29. {field: 'second', title: __('Second')},
  30. {field: 'coach_id', title: __('Coach_id')},
  31. {field: 'is_show', title: __('Is_show'), searchList: {"1":__('Is_show 1'),"0":__('Is_show 0')}, formatter: Table.api.formatter.normal},
  32. {field: 'weigh', title: __('Weigh'), operate: false},
  33. {field: 'coach.nickname', title: __('Coach.nickname'), operate: 'LIKE'},
  34. // {field: 'coach.firstname', title: __('Coach.firstname'), operate: 'LIKE'},
  35. // {field: 'coach.lastname', title: __('Coach.lastname'), operate: 'LIKE'},
  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. });