carinsure.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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: 'carinsure/index' + location.search,
  8. add_url: 'carinsure/add',
  9. edit_url: 'carinsure/edit',
  10. del_url: 'carinsure/del',
  11. multi_url: 'carinsure/multi',
  12. import_url: 'carinsure/import',
  13. table: 'car_insure',
  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: 'car_id', title: __('Car_id')},
  27. {field: 'car.chepaihao', title: __('Car.chepaihao'), operate: 'LIKE'},
  28. {field: 'insure_name', title: __('Insure_name'), operate: 'LIKE'},
  29. {field: 'starttime', title: __('Starttime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  30. {field: 'endtime', title: __('Endtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  31. {field: 'insure_info', title: __('Insure_info'), operate: 'LIKE'},
  32. {field: 'insure_price', title: __('Insure_price'), operate:'BETWEEN'},
  33. {field: 'jingbanren', title: __('Jingbanren'), operate: 'LIKE'},
  34. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  35. ]
  36. ]
  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. api: {
  48. bindevent: function () {
  49. Form.api.bindevent($("form[role=form]"));
  50. }
  51. }
  52. };
  53. return Controller;
  54. });