cost_bill_shouyin.js 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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_shouyin/index' + location.search,
  8. add_url: 'cost/cost_bill_shouyin/add',
  9. edit_url: 'cost/cost_bill_shouyin/edit',
  10. del_url: 'cost/cost_bill_shouyin/del',
  11. multi_url: 'cost/cost_bill_shouyin/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: 'item.item', title: __('收费项目'), formatter: function (value, row, index) {
  35. //return row.village.name;
  36. if(row.item_id=='1'){
  37. return '水费';
  38. }else{
  39. if (row.item_id=='2'){
  40. return '电费';
  41. }else{
  42. if (row.item_id=='999999999'){
  43. return '车位服务费';
  44. }else{
  45. if(row.item.item=='1'){
  46. return '物业费';
  47. }
  48. if(row.item.item=='2'){
  49. return '生活垃圾处理费';
  50. }
  51. if(row.item.item=='3'){
  52. return '车位服务费';
  53. }
  54. }
  55. }
  56. }
  57. },operate:false},
  58. {field: 'village_id', title: __('Village_id'), searchList: $.getJSON("ajax/village_select"),
  59. formatter: function (value, row, index) {
  60. return row.village.name;
  61. }
  62. },
  63. //{field: 'dong.name', title: __('楼宇')},
  64. {field: 'dong.name', title: __('楼宇'),operate:false},
  65. {field: 'danyuan.name', title: __('单元'),operate:false},
  66. {field: 'hu.name', title: __('房产'),operate:false},
  67. {field: 'hu.usesr_name', title: __('业主'),operate:'LIKE'},
  68. // {field: 'mid', title: __('Mid')},
  69. {field: 'price', title: __('Price'), operate:false},
  70. {field: 'true_price', title: __('True_price'), operate:false},
  71. {field: 'start_time_text', title: __('账单周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
  72. {field: 'pay_time', title: __('Pay_time'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  73. // {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  74. // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  75. {field: 'pay_status', title: __('缴费状态'), searchList: {"0":__('未付款'),"1":__('已缴费')}, formatter: Table.api.formatter.normal,operate:false},
  76. // {field: 'is_delete', title: __('Is_delete')},
  77. {field: 'operate', title: __('Operate'), table: table,
  78. buttons: [
  79. {
  80. name: 'detail',
  81. text: __('合并付款'),
  82. title: '合并付款',
  83. classname: 'btn btn-xs btn-primary btn-addtabs',
  84. icon: 'fa fa-list',
  85. url: function(row){
  86. return 'cost/cost_bill_hebing/index?hu_id='+row.hu_id;
  87. },
  88. callback: function (data) {
  89. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  90. },
  91. visible: function (row) {
  92. //返回true时按钮显示,返回false隐藏
  93. return true;
  94. }
  95. }
  96. ],
  97. events: Table.api.events.operate, formatter: Table.api.formatter.operate
  98. }
  99. ]
  100. ]
  101. });
  102. // 为表格绑定事件
  103. Table.api.bindevent(table);
  104. },
  105. add: function () {
  106. Controller.api.bindevent();
  107. },
  108. edit: function () {
  109. Controller.api.bindevent();
  110. },
  111. api: {
  112. bindevent: function () {
  113. Form.api.bindevent($("form[role=form]"));
  114. }
  115. }
  116. };
  117. return Controller;
  118. });