videoplatform.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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: 'platform/videoplatform/index',
  8. add_url: 'platform/videoplatform/add',
  9. edit_url: 'platform/videoplatform/edit',
  10. del_url: 'platform/videoplatform/del',
  11. multi_url: 'platform/videoplatform/multi',
  12. dragsort_url: 'platform/videoplatform/dragsort',
  13. table: 'video_platform',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. // sortName: 'user.id',
  22. columns: [
  23. [
  24. {checkbox: true},
  25. {field: 'id', title: __('ID'), sortable: true},
  26. // {field: 'videolist.name', title: __('短剧名称'), operate: false},
  27. // {field: 'platform.name', title: __('平台名称'), operate: false},
  28. {field: 'vid', title: __('短剧名称'), sortable: true},
  29. {field: 'platform_id', title: __('平台名称'), sortable: true},
  30. {field: 'max', title: __('收益上限'), sortable: true},
  31. {field: 'min', title: __('收益下限'), sortable: true},
  32. {field: 'createtime', title: __('创建时间'), formatter: Table.api.formatter.datetime},
  33. {field: 'operate', title: __('操作'), formatter: Table.api.formatter.operate}
  34. ]
  35. ]
  36. });
  37. // 为表格绑定事件
  38. Table.api.bindevent(table);
  39. },
  40. add: function () {
  41. Controller.api.bindevent();
  42. },
  43. edit: function () {
  44. Controller.api.bindevent();
  45. },
  46. api: {
  47. bindevent: function () {
  48. Form.api.bindevent($("form[role=form]"));
  49. },
  50. // formatter: {
  51. // paytype: function (value) {
  52. // return value==2 ? '<span class="label label-danger">' + __("已支付") + '</span>': '<span class="label label-default">'+ __('未支付')+ '</span>';
  53. // },
  54. // type: function (value) {
  55. // return value==2 ? '<span class="label label-danger">' + __("已使用") + '</span>': '<span class="label label-default">'+ __('未使用')+ '</span>';
  56. // }
  57. // }
  58. }
  59. };
  60. return Controller;
  61. });