cost_bill.js 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_bill/index' + location.search,
  8. add_url: 'cost/cost_add/add',
  9. edit_url: 'cost/cost_bill/edit',
  10. del_url: 'cost/cost_bill/del',
  11. multi_url: 'cost/cost_bill/multi',
  12. table: 'cost_bill',
  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'),operate:false},
  31. // {field: 'item_id', title: __('Item_id')},
  32. {field: 'item.item', title: __('收费项目'), searchList: {"1":__('物业费'),"2":__('垃圾处理费'),"3":__('车位服务费')}, formatter: Table.api.formatter.normal,operate:false},
  33. // {field: 'property_id', title: __('Property_id')},
  34. {field: 'village_id', title: __('Village_id'), searchList: $.getJSON("ajax/village_select"),
  35. formatter: function (value, row, index) {
  36. return row.village.name;
  37. }
  38. },
  39. //{field: 'dong.name', title: __('楼宇')},
  40. {field: 'dong.name', title: __('楼宇'),operate:false},
  41. {field: 'danyuan.name', title: __('单元'),operate:false},
  42. {field: 'hu.name', title: __('房产'),operate:false},
  43. {field: 'hu.usesr_name', title: __('业主'),operate:'LIKE'},
  44. // {field: 'mid', title: __('Mid')},
  45. {field: 'price', title: __('Price'), operate:false},
  46. {field: 'true_price', title: __('True_price'), operate:false},
  47. {field: 'start_time_text', title: __('账单周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
  48. {field: 'pay_time', title: __('Pay_time'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  49. // {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  50. // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  51. {field: 'pay_status', title: __('缴费状态'), formatter:Table.api.formatter.toggle},
  52. // {field: 'is_delete', title: __('Is_delete')},
  53. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  54. ]
  55. ]
  56. });
  57. // 为表格绑定事件
  58. Table.api.bindevent(table);
  59. },
  60. add: function () {
  61. Controller.api.bindevent();
  62. },
  63. edit: function () {
  64. Controller.api.bindevent();
  65. },
  66. api: {
  67. bindevent: function () {
  68. Form.api.bindevent($("form[role=form]"));
  69. }
  70. }
  71. };
  72. return Controller;
  73. });