cost_bill_hebing.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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_hebing/index' + location.search,
  8. multi_url: 'cost/cost_bill_hebing/jiesuan',
  9. edit_url: 'cost/cost_bill_hebing/jiesuan',
  10. table: 'cost_bill',
  11. }
  12. });
  13. var table = $("#table");
  14. // 初始化表格
  15. table.bootstrapTable({
  16. url: $.fn.bootstrapTable.defaults.extend.index_url,
  17. pk: 'id',
  18. sortName: 'id',
  19. // search:false,
  20. // showToggle: false,
  21. // showColumns: false,
  22. // visible: false,
  23. // showExport: false,
  24. // commonSearch: false,
  25. columns: [
  26. [
  27. {checkbox: true},
  28. {field: 'id', title: __('Id'),operate:false},
  29. // {field: 'item_id', title: __('Item_id')},
  30. // {field: 'item.item', title: __('收费项目'), searchList: {"1":__('物业费'),"2":__('垃圾处理费'),"3":__('车位服务费')}, formatter: Table.api.formatter.normal,operate:false},
  31. // {field: 'property_id', title: __('Property_id')},
  32. {field: 'item.item', title: __('收费项目'), formatter: function (value, row, index) {
  33. //return row.village.name;
  34. if(row.item_id=='1'){
  35. return '水费';
  36. }else{
  37. if (row.item_id=='2'){
  38. return '电费';
  39. }else{
  40. if (row.item_id=='999999999'){
  41. return '车位服务费';
  42. }else{
  43. if(row.item.item=='1'){
  44. return '物业费';
  45. }
  46. if(row.item.item=='2'){
  47. return '垃圾处理费';
  48. }
  49. if(row.item.item=='3'){
  50. return '车位服务费';
  51. }
  52. }
  53. }
  54. }
  55. },operate:false},
  56. {field: 'village_id', title: __('Village_id'), searchList: $.getJSON("ajax/village_select"),
  57. formatter: function (value, row, index) {
  58. return row.village.name;
  59. }
  60. },
  61. //{field: 'dong.name', title: __('楼宇')},
  62. {field: 'dong.name', title: __('楼宇'),operate:false},
  63. {field: 'danyuan.name', title: __('单元'),operate:false},
  64. {field: 'hu.name', title: __('房产'),operate:false},
  65. {field: 'hu.usesr_name', title: __('业主'),operate:'LIKE'},
  66. // {field: 'mid', title: __('Mid')},
  67. {field: 'price', title: __('Price'), operate:false},
  68. {field: 'true_price', title: __('True_price'), operate:false},
  69. {field: 'start_time_text', title: __('账单周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
  70. // {field: 'pay_time', title: __('Pay_time'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  71. // {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  72. // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
  73. // {field: 'pay_status', title: __('缴费状态'), formatter:Table.api.formatter.toggle},
  74. ]
  75. ]
  76. });
  77. // 为表格绑定事件
  78. Table.api.bindevent(table);
  79. },
  80. add: function () {
  81. Controller.api.bindevent();
  82. },
  83. edit: function () {
  84. Controller.api.bindevent();
  85. },
  86. api: {
  87. bindevent: function () {
  88. Form.api.bindevent($("form[role=form]"));
  89. }
  90. }
  91. };
  92. $("#button").on("click",function(){
  93. var temps=$('#table').bootstrapTable('getAllSelections');
  94. // var a = JSON.stringify(temp);// 转成JSON字符串
  95. var ids='';
  96. $.each(temps,function(i,n)
  97. {
  98. if (ids==''){
  99. ids=n.id;
  100. }else{
  101. ids=ids+','+n.id;
  102. }
  103. });
  104. // alert(ids);
  105. //发送给控制器
  106. Fast.api.open("cost/cost_bill_hebing/jiesuan?type=1&ids="+ids, "结算", {
  107. callback: function (value) {
  108. // alert(1);
  109. }
  110. });
  111. //或者ajax
  112. });
  113. return Controller;
  114. });