caraccident.js 2.6 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: 'caraccident/index' + location.search,
  8. add_url: 'caraccident/add',
  9. edit_url: 'caraccident/edit',
  10. del_url: 'caraccident/del',
  11. multi_url: 'caraccident/multi',
  12. import_url: 'caraccident/import',
  13. table: 'car_accident',
  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: 'car.brand', title: __('Car.brand'), operate: 'LIKE'},
  29. {field: 'car.xinghao', title: __('Car.xinghao'), operate: 'LIKE'},
  30. {field: 'coach_id', title: __('Coach_id')},
  31. {field: 'coach.nickname', title: __('Coach.nickname'), operate: 'LIKE'},
  32. {field: 'info', title: __('Info'), operate: 'LIKE'},
  33. {field: 'lipei_price', title: __('Lipei_price'), operate:'BETWEEN'},
  34. {field: 'zeren', title: __('Zeren'), operate: 'LIKE'},
  35. {field: 'baoxianshangfu', title: __('Baoxianshangfu'), operate:'BETWEEN'},
  36. {field: 'addtime', title: __('Addtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
  37. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  38. ]
  39. ]
  40. });
  41. // 为表格绑定事件
  42. Table.api.bindevent(table);
  43. },
  44. add: function () {
  45. Controller.api.bindevent();
  46. },
  47. edit: 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. });