define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'xilufitness/coach/withdraw/index' + location.search, // add_url: 'xilufitness/coach/withdraw/add', edit_url: 'xilufitness/coach/withdraw/edit', del_url: 'xilufitness/coach/withdraw/del', multi_url: 'xilufitness/coach/withdraw/multi', import_url: 'xilufitness/coach/withdraw/import', table: 'xilufitness_coach_withdraw', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', queryParams:function(params){ params.filter = JSON.parse(params.filter); if(Config.coach_id > 0){ params.filter.coach_id = Config.coach_id; } if(Config.brand_id > 0){ params.filter.brand_id = Config.brand_id; } params.filter = JSON.stringify(params.filter); return params; }, columns: [ [ {checkbox: true}, {field: 'id', title: __('Id'),searchable:false, sortable:true}, {field: 'coach.coach_name', title: __('Coach_id'), operate: 'LIKE'}, {field: 'order_no', title: __('Order_no'), operate: 'LIKE'}, {field: 'withdraw_price', title: __('Withdraw_price'), operate:'BETWEEN'}, {field: 'withdraw_status', title: __('Withdraw_status'), searchList:Config.statusList, formatter: Table.api.formatter.normal}, {field: 'brand.brand_name', title: __('Brand_id'), operate: 'LIKE'}, {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, recyclebin: function () { // 初始化表格参数配置 Table.api.init({ extend: { 'dragsort_url': '' } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: 'xilufitness/coach/withdraw/recyclebin' + location.search, pk: 'id', sortName: 'id', columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, { field: 'deletetime', title: __('Deletetime'), operate: 'RANGE', addclass: 'datetimerange', formatter: Table.api.formatter.datetime }, { field: 'operate', width: '140px', title: __('Operate'), table: table, events: Table.api.events.operate, buttons: [ { name: 'Restore', text: __('Restore'), classname: 'btn btn-xs btn-info btn-ajax btn-restoreit', icon: 'fa fa-rotate-left', url: 'xilufitness/coach/withdraw/restore', refresh: true }, { name: 'Destroy', text: __('Destroy'), classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit', icon: 'fa fa-times', url: 'xilufitness/coach/withdraw/destroy', refresh: true } ], 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; });