cost_bill_dayin.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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_dayin/index' + location.search,
  8. // add_url: 'cost/cost_bill_dayin/add',
  9. // edit_url: 'cost/cost_bill_dayin/edit',
  10. // del_url: 'cost/cost_bill_dayin/del',
  11. multi_url: 'cost/cost_bill_dayin/multi',
  12. printing_url :'cost/cost_bill_print/index_p?pay_id='+Config.pay_id+'&cost_bill_id='+Config.cost_bill_id,
  13. table: 'cost_bill_pay',
  14. }
  15. });
  16. var table = $("#table");
  17. // 初始化表格
  18. table.bootstrapTable({
  19. url: $.fn.bootstrapTable.defaults.extend.index_url,
  20. pk: 'id',
  21. sortName: 'id',
  22. search:false,
  23. showToggle: false,
  24. showColumns: false,
  25. visible: false,
  26. showExport: false,
  27. commonSearch: false,
  28. columns: [
  29. [
  30. {checkbox: true},
  31. {field: 'id', title: __('Id'),operate:false},
  32. // {field: 'item_id', title: __('Item_id')},
  33. // {field: 'item.item', title: __('收费项目'), searchList: {"1":__('物业费'),"2":__('垃圾处理费'),"3":__('车位服务费')}, formatter: Table.api.formatter.normal,operate:false},
  34. // {field: 'property_id', title: __('Property_id')},
  35. {field: 'item.item', title: __('收费项目'), formatter: function (value, row, index) {
  36. //return row.village.name;
  37. if(row.item_id=='1'){
  38. return '水费';
  39. }else{
  40. if (row.item_id=='2'){
  41. return '电费';
  42. }else{
  43. if (row.item_id=='999999999'){
  44. return '车位服务费';
  45. }else{
  46. if(row.item.item=='1'){
  47. return '物业费';
  48. }
  49. if(row.item.item=='2'){
  50. return '垃圾处理费';
  51. }
  52. if(row.item.item=='3'){
  53. return '车位服务费';
  54. }
  55. }
  56. }
  57. }
  58. },operate:false},
  59. {field: 'village_id', title: __('小区'),
  60. formatter: function (value, row, index) {
  61. return row.village.name;
  62. }
  63. },
  64. //{field: 'dong.name', title: __('楼宇')},
  65. {field: 'dong.name', title: __('楼宇'),operate:false},
  66. {field: 'danyuan.name', title: __('单元'),operate:false},
  67. {field: 'hu.name', title: __('房产'),operate:false},
  68. {field: 'hu.usesr_name', title: __('业主'),operate:'LIKE'},
  69. // {field: 'mid', title: __('Mid')},
  70. {field: 'price', title: __('Price'), operate:false},
  71. {field: 'true_price', title: __('True_price'), operate:false},
  72. {field: 'start_time_text', title: __('账单周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
  73. ]
  74. ]
  75. });
  76. // 为表格绑定事件
  77. Table.api.bindevent(table);
  78. },
  79. add: function () {
  80. Controller.api.bindevent();
  81. },
  82. edit: function () {
  83. Controller.api.bindevent();
  84. },
  85. print: function () {
  86. alert(1);
  87. },
  88. api: {
  89. bindevent: function () {
  90. Form.api.bindevent($("form[role=form]"));
  91. }
  92. }
  93. };
  94. return Controller;
  95. });