enumconfig.js 1.8 KB

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