123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cost/cost_bill_hebing/index' + location.search,
- multi_url: 'cost/cost_bill_hebing/jiesuan',
- edit_url: 'cost/cost_bill_hebing/jiesuan',
- table: 'cost_bill',
- }
- });
- 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: __('Village_id'), searchList: $.getJSON("ajax/village_select"),
- 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; }},
- // {field: 'pay_time', title: __('Pay_time'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
- // {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
- // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
- // {field: 'pay_status', title: __('缴费状态'), formatter:Table.api.formatter.toggle},
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- $("#button").on("click",function(){
- var temps=$('#table').bootstrapTable('getAllSelections');
- // var a = JSON.stringify(temp);// 转成JSON字符串
- var ids='';
- $.each(temps,function(i,n)
- {
- if (ids==''){
- ids=n.id;
- }else{
- ids=ids+','+n.id;
- }
- });
- // alert(ids);
- //发送给控制器
- Fast.api.open("cost/cost_bill_hebing/jiesuan?type=1&ids="+ids, "结算", {
- callback: function (value) {
- // alert(1);
- }
- });
- //或者ajax
- });
- return Controller;
- });
|