cost_bill_shouyini.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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_shouyini/index' + location.search,
  8. add_url: 'cost/cost_bill_shouyini/add',
  9. edit_url: 'cost/cost_bill_shouyini/edit',
  10. del_url: 'cost/cost_bill_shouyini/del',
  11. multi_url: 'cost/cost_bill_shouyini/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. columns: [
  22. [
  23. {checkbox: true},
  24. {field: 'id', title: __('Id'),operate:false},
  25. // {field: 'item_id', title: __('Item_id')},
  26. {field: 'item.item', title: __('收费项目'), formatter: function (value, row, index) {
  27. //return row.village.name;
  28. if(row.item_id=='1'){
  29. return '水费';
  30. }else{
  31. if (row.item_id=='2'){
  32. return '电费';
  33. }else{
  34. if (row.item_id=='999999999'){
  35. return '车位服务费';
  36. }else{
  37. if(row.item.item=='1'){
  38. return '物业费';
  39. }
  40. if(row.item.item=='1'){
  41. return '生活垃圾处理费';
  42. }
  43. if(row.item.item=='1'){
  44. return '车位服务费';
  45. }
  46. }
  47. }
  48. }
  49. },operate:false},
  50. {field: 'village_id', title: __('Village_id'), searchList: $.getJSON("ajax/village_select"),
  51. formatter: function (value, row, index) {
  52. return row.village.name;
  53. }
  54. },
  55. {field: 'detail.louyu', title: __('楼宇'),operate: false},
  56. {field: 'detail.danyuan_name', title: __('单元'),operate: false},
  57. {field: 'detail.fang', title: __('房号'),operate: 'LIKE'},
  58. {field: 'detail.usesr_name', title: __('业主'),operate: 'LIKE'},
  59. {field: 'price', title: __('Price'), operate:false},
  60. {field: 'true_price', title: __('True_price'), operate:false},
  61. {field: 'start_time_text', title: __('账单周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
  62. {field: 'pay_status', title: __('是否缴费'),sortable:true, searchList: {"1":__('已付款'),"0":__('未付款')}, table: table, formatter: Table.api.formatter.toggle,},
  63. {field: 'pay_time', title: __('Pay_time'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  64. {field: 'operate', title: __('Operate'), table: table,
  65. buttons: [
  66. {
  67. name: 'detail',
  68. text: __('综合收款'),
  69. title: '综合收款',
  70. classname: 'btn btn-xs btn-success btn-dialog',
  71. icon: 'fa fa-list',
  72. url: function(row){
  73. return 'cost/cost_bill_shouyin/index?bill_id='+row.id;
  74. },
  75. // dropdown:'更多操作',
  76. callback: function (data) {
  77. Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
  78. },
  79. visible: function (row) {
  80. //返回true时按钮显示,返回false隐藏
  81. return true;
  82. }
  83. }
  84. ],
  85. events: Table.api.events.operate, formatter: Table.api.formatter.operate
  86. }
  87. ]
  88. ]
  89. });
  90. // 为表格绑定事件
  91. Table.api.bindevent(table);
  92. },
  93. add: function () {
  94. Controller.api.bindevent();
  95. },
  96. edit: function () {
  97. Controller.api.bindevent();
  98. },
  99. api: {
  100. bindevent: function () {
  101. Form.api.bindevent($("form[role=form]"));
  102. }
  103. }
  104. };
  105. return Controller;
  106. });