define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'packagemove/index' + location.search, add_url: 'packagemove/add', // edit_url: 'packagemove/edit', // del_url: 'packagemove/del', multi_url: 'packagemove/multi', import_url: 'packagemove/import', table: 'package_move', } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', fixedColumns: true, fixedRightNumber: 1, columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'user_id', title: __('User_id')}, // {field: 'usera.firstname', title: __('Usera.firstname'), operate: 'LIKE'}, // {field: 'usera.lastname', title: __('Usera.lastname'), operate: 'LIKE'}, {field: 'name', title: __('Name'), operate: 'LIKE'}, {field: 'mobile', title: __('Mobile'), operate: 'LIKE'}, {field: 'email', title: __('Email'), operate: 'LIKE'}, {field: 'reason', title: __('Reason'), operate: 'LIKE'}, // {field: 'reason_files', title: __('Reason_files'), operate: false, formatter: Table.api.formatter.files}, {field: 'package_order_id', title: __('Package_order_id')}, {field: 'order.order_no', title: __('Order.order_no'), operate: 'LIKE'}, {field: 'sessions', title: __('Sessions')}, {field: 'to_name', title: __('To_name'), operate: 'LIKE'}, {field: 'to_mobile', title: __('To_mobile'), operate: 'LIKE'}, {field: 'to_email', title: __('To_email'), operate: 'LIKE'}, {field: 'to_user_id', title: __('To_user_id')}, /*{field: 'userb.firstname', title: __('Userb.firstname'), operate: 'LIKE'}, {field: 'userb.lastname', title: __('Userb.lastname'), operate: 'LIKE'},*/ {field: 'remark', title: __('Remark'), operate: 'LIKE'}, {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status}, {field: 'audittime', title: __('Audittime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'auditremark', title: __('Auditremark'), operate: 'LIKE'}, {field: 'operate', title: __('Operate'), table: table, buttons:[ { name:'audit', text:'审核', title:'审核', icon:'fa fa-exclamation-circle', classname:'btn btn-xs btn-info btn-dialog', url:'packagemove/audit/id/{ids}?dialog=1', target:'_self', refresh:true, hidden:function(row){ return row.status==0 ? false : 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(); }, audit: function () { Controller.api.bindevent(); }, api: { bindevent: function () { Form.api.bindevent($("form[role=form]")); } } }; return Controller; });