javascript.stub 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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: '{%controllerUrl%}/index' + location.search,
  8. add_url: '{%controllerUrl%}/add',
  9. edit_url: '{%controllerUrl%}/edit',
  10. del_url: '{%controllerUrl%}/del',
  11. multi_url: '{%controllerUrl%}/multi',
  12. import_url: '{%controllerUrl%}/import',
  13. table: '{%table%}',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: '{%pk%}',
  21. sortName: '{%order%}',{%fixedColumnsJs%}
  22. columns: [
  23. [
  24. {%javascriptList%}
  25. ]
  26. ]
  27. });
  28. // 为表格绑定事件
  29. Table.api.bindevent(table);
  30. },{%recyclebinJs%}
  31. add: function () {
  32. Controller.api.bindevent();
  33. },
  34. edit: function () {
  35. Controller.api.bindevent();
  36. },
  37. api: {
  38. bindevent: function () {
  39. Form.api.bindevent($("form[role=form]"));
  40. }
  41. }
  42. };
  43. return Controller;
  44. });