cost_edit.js 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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: 'cost/cost_edit/index' + location.search,
  8. add_url: 'cost/cost_edit/add',
  9. edit_url: 'cost/cost_edit/edit',
  10. del_url: 'cost/cost_edit/del',
  11. multi_url: 'cost/cost_edit/multi',
  12. table: 'cost_edit',
  13. }
  14. });
  15. var table = $("#table");
  16. // 初始化表格
  17. table.bootstrapTable({
  18. url: $.fn.bootstrapTable.defaults.extend.index_url,
  19. pk: 'id',
  20. sortName: 'id',
  21. search:false,
  22. showToggle: false,
  23. showColumns: false,
  24. visible: false,
  25. showExport: false,
  26. commonSearch: false,
  27. columns: [
  28. [
  29. {checkbox: true},
  30. {field: 'id', title: __('Id')},
  31. {field: 'house', title: __('房产')},
  32. {field: 'item_name', title: __('费用')},
  33. {field: 'true_price_old', title: __('True_price_old'), operate:'BETWEEN'},
  34. {field: 'true_price_new', title: __('True_price_new'), operate:'BETWEEN'},
  35. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  36. // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  37. {field: 'status', title: __('状态'), searchList: {"1":__('审核中'),"2":__('已通过'),"3":__('已驳回')}, formatter: Table.api.formatter.normal,operate:false},
  38. // {field: 'property_id', title: __('Property_id')},
  39. // {field: 'is_delete', title: __('Is_delete')},
  40. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  41. ]
  42. ]
  43. });
  44. // 为表格绑定事件
  45. Table.api.bindevent(table);
  46. },
  47. add: function () {
  48. Controller.api.bindevent();
  49. },
  50. edit: function () {
  51. Controller.api.bindevent();
  52. },
  53. api: {
  54. bindevent: function () {
  55. Form.api.bindevent($("form[role=form]"));
  56. }
  57. }
  58. };
  59. return Controller;
  60. });