123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cost/cost_bill_shouyini/index' + location.search,
- add_url: 'cost/cost_bill_shouyini/add',
- edit_url: 'cost/cost_bill_shouyini/edit',
- del_url: 'cost/cost_bill_shouyini/del',
- multi_url: 'cost/cost_bill_shouyini/multi',
- table: 'cost_bill',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id'),operate:false},
- // {field: 'item_id', title: __('Item_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=='1'){
- return '垃圾处理费';
- }
- if(row.item.item=='1'){
- return '车位服务费';
- }
- }
- }
- }
- },operate:false},
- {field: 'village_id', title: __('Village_id'), searchList: $.getJSON("ajax/village_select"),
- formatter: function (value, row, index) {
- return row.village.name;
- }
- },
- {field: 'detail.louyu', title: __('楼宇'),operate: false},
- {field: 'detail.danyuan_name', title: __('单元'),operate: false},
- {field: 'detail.fang', title: __('房号'),operate: 'LIKE'},
- {field: 'detail.usesr_name', title: __('业主'),operate: 'LIKE'},
- {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; }},
- {field: 'pay_status', title: __('是否缴费'),sortable:true, searchList: {"1":__('已付款'),"0":__('未付款')}, table: table, formatter: Table.api.formatter.toggle,},
- {field: 'pay_time', title: __('Pay_time'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
- {field: 'operate', title: __('Operate'), table: table,
- buttons: [
- {
- name: 'detail',
- text: __('综合收款'),
- title: '综合收款',
- classname: 'btn btn-xs btn-success btn-dialog',
- icon: 'fa fa-list',
- url: function(row){
- return 'cost/cost_bill_shouyin/index?bill_id='+row.id;
- },
- // dropdown:'更多操作',
- callback: function (data) {
- Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
- },
- visible: function (row) {
- //返回true时按钮显示,返回false隐藏
- return true;
- }
- }
- ],
- events: Table.api.events.operate, formatter: Table.api.formatter.operate
- }
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|