music.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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: 'party/music/index' + location.search,
  8. add_url: 'party/music/add',
  9. edit_url: 'party/music/edit',
  10. del_url: 'party/music/del',
  11. multi_url: 'party/music/multi',
  12. import_url: 'party/music/import',
  13. table: 'music',
  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: 'name', title: __('Name'), operate: 'LIKE'},
  27. {field: 'music', title: __('Music'), operate: 'LIKE'},
  28. {field: 'times', title: __('Time')},
  29. {field: 'weight', title: __('Weight')},
  30. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  31. ]
  32. ]
  33. });
  34. // 为表格绑定事件
  35. Table.api.bindevent(table);
  36. },
  37. add: function () {
  38. Controller.api.bindevent();
  39. },
  40. edit: function () {
  41. Controller.api.bindevent();
  42. },
  43. api: {
  44. bindevent: function () {
  45. $("#c-music").data("upload-success", function(data, ret){
  46. //这里进行后续操作
  47. });
  48. Form.api.bindevent($("form[role=form]"));
  49. }
  50. }
  51. };
  52. return Controller;
  53. });