introduce.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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: 'introduce/index' + location.search,
  8. add_url: 'introduce/add',
  9. edit_url: 'introduce/edit',
  10. del_url: 'introduce/del',
  11. multi_url: 'introduce/multi',
  12. table: 'introduce',
  13. }
  14. });
  15. var table = $("#table");
  16. // 初始化表格
  17. table.bootstrapTable({
  18. url: $.fn.bootstrapTable.defaults.extend.index_url,
  19. pk: 'id',
  20. sortName: 'id',
  21. search:false,
  22. commonSearch:false,
  23. columns: [
  24. [
  25. {checkbox: true},
  26. {field: 'id', title: __('Id')},
  27. {field: 'title', title: __('Title')},
  28. {field: 'zhu_images', title: __('Zhu_images'), operate: false, events: Table.api.events.image,formatter:Table.api.formatter.images},
  29. {field: 'introduce', title: __('Introduce')},
  30. {field: 'sort', title: __('Sort')},
  31. {field: 'type.name', title: __('Type.name')},
  32. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  33. ]
  34. ]
  35. });
  36. // 为表格绑定事件
  37. Table.api.bindevent(table);
  38. },
  39. add: function () {
  40. Controller.api.bindevent();
  41. },
  42. edit: function () {
  43. Controller.api.bindevent();
  44. },
  45. api: {
  46. bindevent: function () {
  47. Form.api.bindevent($("form[role=form]"));
  48. }
  49. }
  50. };
  51. return Controller;
  52. });