video_user_log.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
  2. var Controller = {
  3. index: async function () {
  4. // 初始化表格参数配置
  5. Table.api.init({
  6. extend: {
  7. index_url: 'video_user_log/index' + location.search,
  8. add_url: 'video_user_log/add',
  9. edit_url: 'video_user_log/edit',
  10. del_url: 'video_user_log/del',
  11. multi_url: 'video_user_log/multi',
  12. import_url: 'video_user_log/import',
  13. table: 'video_user_log',
  14. }
  15. });
  16. let types = await $.getJSON('video_user_log/types')
  17. var table = $("#table");
  18. // 初始化表格
  19. table.bootstrapTable({
  20. url: $.fn.bootstrapTable.defaults.extend.index_url,
  21. pk: 'id',
  22. sortName: 'id',
  23. searchFormVisible:true,
  24. columns: [
  25. [
  26. {checkbox: true},
  27. {field: 'id', title: __('Id')},
  28. {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
  29. {field: 'video.title', title: __('视频标题'),formatter(a,b){
  30. let aa=a
  31. if(a.length>15){
  32. a=a.substr(0,15)+'...'
  33. }
  34. return `<a target="_blank" title="${aa}" href="${b.video.src}">${a}</a>`
  35. }},
  36. {field: 'type', title: __('Type'),searchList:types,formatter: Table.api.formatter.label},
  37. {field: 'created_at', title: __('创建时间'),operate: "RANGE",formatter: Table.api.formatter.datetime,addclass:'datetimerange'},
  38. {
  39. field: 'operate',
  40. title: __('Operate'),
  41. table: table,
  42. events: Table.api.events.operate,
  43. formatter: Table.api.formatter.operate
  44. }
  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. });