machine.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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: 'machine/index' + location.search,
  8. add_url: 'machine/add',
  9. edit_url: 'machine/edit',
  10. del_url: 'machine/del',
  11. multi_url: 'machine/multi',
  12. import_url: 'machine/import',
  13. table: 'machineneserial',
  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: 'serial', title: __('Serial'), operate: 'LIKE', table: table, class: 'autocontent', },
  27. {field: 'machinen_name', title: __('Machinen_name'), operate: 'LIKE', table: table, class: 'autocontent',},
  28. {field: 'status', title: __('Status'), },
  29. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  30. ]
  31. ],
  32. showToggle:false,
  33. showColumns:false,
  34. showExport:false,
  35. searchFormVisible:false,
  36. // commonSearch:false,
  37. });
  38. // 为表格绑定事件
  39. Table.api.bindevent(table);
  40. },
  41. add: function () {
  42. Controller.api.bindevent();
  43. },
  44. edit: function () {
  45. Controller.api.bindevent();
  46. },
  47. del: function () {
  48. Controller.api.bindevent();
  49. },
  50. api: {
  51. bindevent: function () {
  52. Form.api.bindevent($("form[role=form]"));
  53. }
  54. }
  55. };
  56. return Controller;
  57. });