dpgonghang.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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: 'dpgonghang/index' + location.search,
  8. add_url: 'dpgonghang/add',
  9. edit_url: 'dpgonghang/edit',
  10. // del_url: 'dpgonghang/del',
  11. multi_url: 'dpgonghang/multi',
  12. import_url: 'dpgonghang/import',
  13. table: 'dp_gonghang',
  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. search: false, //列表搜索
  23. commonSearch: false,//放大镜搜索
  24. showToggle: false,//显示方式
  25. showColumns: false,//字段勾选
  26. showExport: false,//导出
  27. columns: [
  28. [
  29. // {checkbox: true},
  30. // {field: 'id', title: __('Id')},
  31. {field: 'jkdars', title: __('Jkdars'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  32. {field: 'whcss', title: __('Whcss'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  33. {field: 'smxykcs', title: __('Smxykcs'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  34. {field: 'hdmyd', title: __('Hdmyd'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  35. {field: 'ddgz_djd', title: __('Ddgz_djd'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  36. {field: 'ddgz_fwz', title: __('Ddgz_fwz'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  37. {field: 'ddgz_wcpj', title: __('Ddgz_wcpj'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  38. {field: 'mxbjds', title: __('Mxbjds'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
  39. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  40. ]
  41. ]
  42. });
  43. // 为表格绑定事件
  44. Table.api.bindevent(table);
  45. },
  46. add: function () {
  47. Controller.api.bindevent();
  48. },
  49. edit: function () {
  50. Controller.api.bindevent();
  51. },
  52. api: {
  53. bindevent: function () {
  54. Form.api.bindevent($("form[role=form]"));
  55. }
  56. }
  57. };
  58. return Controller;
  59. });