123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cost/cost_bill_dayin/index' + location.search,
- // add_url: 'cost/cost_bill_dayin/add',
- // edit_url: 'cost/cost_bill_dayin/edit',
- // del_url: 'cost/cost_bill_dayin/del',
- multi_url: 'cost/cost_bill_dayin/multi',
- printing_url :'cost/cost_bill_print/index_p?pay_id='+Config.pay_id+'&cost_bill_id='+Config.cost_bill_id,
- table: 'cost_bill_pay',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- search:false,
- showToggle: false,
- showColumns: false,
- visible: false,
- showExport: false,
- commonSearch: false,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id'),operate:false},
- // {field: 'item_id', title: __('Item_id')},
- // {field: 'item.item', title: __('收费项目'), searchList: {"1":__('物业费'),"2":__('垃圾处理费'),"3":__('车位服务费')}, formatter: Table.api.formatter.normal,operate:false},
- // {field: 'property_id', title: __('Property_id')},
- {field: 'item.item', title: __('收费项目'), formatter: function (value, row, index) {
- //return row.village.name;
- if(row.item_id=='1'){
- return '水费';
- }else{
- if (row.item_id=='2'){
- return '电费';
- }else{
- if (row.item_id=='999999999'){
- return '车位服务费';
- }else{
- if(row.item.item=='1'){
- return '物业费';
- }
- if(row.item.item=='2'){
- return '垃圾处理费';
- }
- if(row.item.item=='3'){
- return '车位服务费';
- }
- }
- }
- }
- },operate:false},
- {field: 'village_id', title: __('小区'),
- formatter: function (value, row, index) {
- return row.village.name;
- }
- },
- //{field: 'dong.name', title: __('楼宇')},
- {field: 'dong.name', title: __('楼宇'),operate:false},
- {field: 'danyuan.name', title: __('单元'),operate:false},
- {field: 'hu.name', title: __('房产'),operate:false},
- {field: 'hu.usesr_name', title: __('业主'),operate:'LIKE'},
- // {field: 'mid', title: __('Mid')},
- {field: 'price', title: __('Price'), operate:false},
- {field: 'true_price', title: __('True_price'), operate:false},
- {field: 'start_time_text', title: __('账单周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- print: function () {
- alert(1);
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|