cost_print.js 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_print/index' + location.search,
  8. add_url: 'cost/cost_print/add',
  9. // edit_url: 'cost/cost_print/edit',
  10. // del_url: 'cost/cost_print/del',
  11. multi_url: 'cost/cost_print/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: __('序号'),operate:false},
  31. // {field: 'item_id', title: __('Item_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=='1'){
  47. return '生活垃圾处理费';
  48. }
  49. if(row.item.item=='1'){
  50. return '车位服务费';
  51. }
  52. }
  53. }
  54. }
  55. },operate:false},
  56. // {field: 'property_id', title: __('Property_id')},
  57. {field: 'yongliang', title: __('用量')},
  58. {field: 'danwei', title: __('单位'),operate:false},
  59. {field: 'danjia', title: __('单价'),operate:false},
  60. {field: 'start_time_text', title: __('缴费周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
  61. {field: 'price', title: __('金额'),operate:false},
  62. {field: 'true_price', title: __('实收'),operate:false},
  63. // {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
  64. ]
  65. ]
  66. });
  67. // 为表格绑定事件
  68. Table.api.bindevent(table);
  69. },
  70. add: function () {
  71. Controller.api.bindevent();
  72. },
  73. edit: function () {
  74. Controller.api.bindevent();
  75. },
  76. api: {
  77. bindevent: function () {
  78. Form.api.bindevent($("form[role=form]"));
  79. }
  80. }
  81. };
  82. return Controller;
  83. });