javascript.stub 1.4 KB

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