define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) { var Controller = { index: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'user/user/index' + location.search, add_url: 'user/user/add', edit_url: 'user/user/edit', // del_url: 'user/user/del', multi_url: 'user/user/multi', import_url: 'user/user/import', table: 'user', } }); var table = $("#table"); //在普通搜索渲染后 table.on('post-common-search.bs.table', function (event, table) { var form = $("form", table.$commonsearch); $("input[name='gangwei_id']", form).addClass("selectpage").data("source", "usergangwei/index").data("primaryKey", "id").data("field", "name").data("orderBy", "weigt desc"); $("input[name='jigou_id']", form).addClass("selectpage").data("source", "userjigou/index").data("primaryKey", "id").data("field", "name").data("orderBy", "weigt desc"); Form.events.cxselect(form); Form.events.selectpage(form); }); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', fixedColumns: true, fixedRightNumber: 1, search:false, //搜索id columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'gangwei_id', title: __('Gangwei_id')}, {field: 'gangwei.name', title: __('Gangwei.name'), operate: 'LIKE'}, {field: 'jigou_id', title: __('Jigou_id')}, {field: 'jigou.name', title: __('Jigou.name'), operate: 'LIKE'}, {field: 'username', title: __('Username'), operate: 'LIKE'}, {field: 'nickname', title: __('Nickname'), operate: 'LIKE'}, {field: 'mobile', title: __('Mobile'), operate: 'LIKE'}, {field: 'avatar', title: __('Avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image}, // {field: 'gender', title: __('Gender'), searchList: {"1":__('Gender 1'),"0":__('Gender 0')}, formatter: Table.api.formatter.normal}, // {field: 'prevtime', title: __('Prevtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, // {field: 'logintime', title: __('Logintime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, // {field: 'loginip', title: __('Loginip'), operate: 'LIKE'}, // {field: 'joinip', title: __('Joinip'), operate: 'LIKE'}, // {field: 'jointime', title: __('Jointime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, // {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: 'token', title: __('Token'), operate: 'LIKE'}, {field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"0":__('Status 0'),"-1":__('Status -1')}, formatter: Table.api.formatter.status}, {field: 'idcard_status', title: __('Idcard_status'), searchList: {"-1":__('Idcard_status -1'),"0":__('Idcard_status 0'),"1":__('Idcard_status 1'),"2":__('Idcard_status 2')}, formatter: Table.api.formatter.status}, // {field: 'mini_openid', title: __('Mini_openid'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content}, {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; });