12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cost/cost_bill/index' + location.search,
- add_url: 'cost/cost_add/add',
- edit_url: 'cost/cost_bill/edit',
- del_url: 'cost/cost_bill/del',
- multi_url: 'cost/cost_bill/multi',
- 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: '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},
- // {field: 'is_delete', title: __('Is_delete')},
- {field: 'operate', title: __('Operate'), table: table, 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;
- });
|