voteplayer.js 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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: 'voteplayer/index' + location.search,
  8. add_url: 'voteplayer/add',
  9. edit_url: 'voteplayer/edit',
  10. del_url: 'voteplayer/del',
  11. multi_url: 'voteplayer/multi',
  12. import_url: 'voteplayer/import',
  13. table: 'vote_player',
  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: 'subject_id', title: __('Subject_id')},
  27. {field: 'title', title: __('Title'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  28. {field: 'suozaidanwei', title: __('Suozaidanwei'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  29. {field: 'tuijiangonghui', title: __('Tuijiangonghui'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  30. {field: 'video_file', title: __('Video_file'), operate: false, formatter: Table.api.formatter.video},
  31. {field: 'votes', title: __('Votes')},
  32. {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
  33. {field: 'score', title: __('Score')},
  34. {field: 'operate', title: __('Operate'), table: table,
  35. /* buttons:[
  36. {
  37. name:'editvideo',
  38. text:'上传视频',
  39. title:'上传视频',
  40. icon:'fa fa-exclamation-circle',
  41. classname:'btn btn-xs btn-info btn-dialog btn-selectuser',
  42. url:'voteplayer/editvideo/id/{ids}?dialog=1',
  43. target:'_self',
  44. },
  45. ],*/
  46. events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  47. ]
  48. ]
  49. });
  50. // 为表格绑定事件
  51. Table.api.bindevent(table);
  52. },
  53. add: function () {
  54. Controller.api.bindevent();
  55. },
  56. editvideo: function () {
  57. Controller.api.bindevent();
  58. },
  59. edit: function () {
  60. Controller.api.bindevent();
  61. },
  62. api: {
  63. bindevent: function () {
  64. Form.api.bindevent($("form[role=form]"));
  65. }
  66. }
  67. };
  68. return Controller;
  69. });