orderbackconfig.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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: 'orderbackconfig/index' + location.search,
  8. add_url: 'orderbackconfig/add',
  9. edit_url: 'orderbackconfig/edit',
  10. del_url: 'orderbackconfig/del',
  11. multi_url: 'orderbackconfig/multi',
  12. import_url: 'orderbackconfig/import',
  13. table: 'order_back_config',
  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: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  28. ]
  29. ]
  30. });
  31. // 为表格绑定事件
  32. Table.api.bindevent(table);
  33. },
  34. add: function () {
  35. Controller.api.bindevent();
  36. },
  37. edit: function () {
  38. Controller.api.bindevent();
  39. },
  40. api: {
  41. bindevent: function () {
  42. Form.api.bindevent($("form[role=form]"));
  43. }
  44. }
  45. };
  46. return Controller;
  47. });