12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'cost/cost_print/index' + location.search,
- add_url: 'cost/cost_print/add',
- // edit_url: 'cost/cost_print/edit',
- // del_url: 'cost/cost_print/del',
- multi_url: 'cost/cost_print/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: __('序号'),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: 'property_id', title: __('Property_id')},
- {field: 'yongliang', title: __('用量')},
- {field: 'danwei', title: __('单位'),operate:false},
- {field: 'danjia', title: __('单价'),operate:false},
- {field: 'start_time_text', title: __('缴费周期'), operate:false,formatter:function(value,row){return row.start_time_text + "~" + row.end_time_text; }},
- {field: 'price', title: __('金额'),operate:false},
- {field: 'true_price', title: __('实收'),operate:false},
- // {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;
- });
|