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.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'id', columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, // {field: 'group_id', title: __('Group_id')}, {field: 'usergroup.name', title: __('Usergroup.name'), operate: 'LIKE'}, {field: 'intro_uid', title: __('Intro_uid')}, {field: 'agent_id', title: __('Agent_id')}, {field: 'yaoqingtime', title: __('Yaoqingtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'invite_uid', title: __('Invite_uid')}, {field: 'username', title: __('Username'), operate: 'LIKE'}, {field: 'nickname', title: __('Nickname'), operate: 'LIKE'}, {field: 'agentname', title: __('Agentname'), operate: 'LIKE'}, // {field: 'introcode', title: __('Introcode'), 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'),"1":__('Gender 1'),"0":__('Gender 0')}, formatter: Table.api.formatter.normal}, // {field: 'height', title: __('Height'), operate: 'LIKE'}, // {field: 'weight', title: __('Weight'), operate: 'LIKE'}, // {field: 'birthday', title: __('Birthday')}, // {field: 'bio', title: __('Bio'), operate: 'LIKE'}, // {field: 'audio_bio', title: __('Audio_bio'), operate: 'LIKE'}, // {field: 'video_bio', title: __('Video_bio'), operate: 'LIKE'}, {field: 'idcard_status', title: __('Idcard_status'), searchList: {"-1":__('Idcard_status -1'),"0":__('Idcard_status 0'),"1":__('Idcard_status 1')}, formatter: Table.api.formatter.status}, {field: 'real_status', title: __('Real_status'), searchList: {"-1":__('Real_status -1'),"0":__('Real_status 0'),"1":__('Real_status 1')}, formatter: Table.api.formatter.status}, // {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: '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: 'provincename', title: __('Provincename'), operate: 'LIKE'}, // {field: 'cityname', title: __('Cityname'), operate: 'LIKE'}, // {field: 'hide_is_finishinfo', title: __('Hide_is_finishinfo'), searchList: {"1":__('Hide_is_finishinfo 1'),"0":__('Hide_is_finishinfo 0')}, formatter: Table.api.formatter.normal}, // {field: 'wechat_openid', title: __('Wechat_openid'), operate: 'LIKE'}, // {field: 'is_active', title: __('Is_active'), searchList: {"1":__('Is_active 1'),"0":__('Is_active 0')}, formatter: Table.api.formatter.normal}, // {field: 'ios_user_id', title: __('Ios_user_id'), operate: 'LIKE'}, // {field: 'plat_unique_id', title: __('Plat_unique_id'), operate: 'LIKE'}, // {field: 'marital_id', title: __('Marital_id'), operate: 'LIKE'}, // {field: 'job_id', title: __('Job_id'), operate: 'LIKE'}, // {field: 'wages_id', title: __('Wages_id'), operate: 'LIKE'}, // {field: 'suqiu_id', title: __('Suqiu_id'), operate: 'LIKE'}, // {field: 'tag_ids', title: __('Tag_ids'), operate: 'LIKE'}, // {field: 'hobby_ids', title: __('Hobby_ids'), operate: 'LIKE'}, // {field: 'open_match_video', title: __('Open_match_video'), searchList: {"1":__('Open_match_video 1'),"0":__('Open_match_video 0')}, formatter: Table.api.formatter.normal}, // {field: 'open_match_audio', title: __('Open_match_audio'), searchList: {"1":__('Open_match_audio 1'),"0":__('Open_match_audio 0')}, formatter: Table.api.formatter.normal}, // {field: 'match_video_price', title: __('Match_video_price')}, // {field: 'match_audio_price', title: __('Match_audio_price')}, // {field: 'match_typing_price', title: __('Match_typing_price')}, {field: 'jinyantime', title: __('Jinyantime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime}, {field: 'jinyantype', title: __('Jinyantype'), searchList: {"1":__('Jinyantype 1'),"2":__('Jinyantype 2'),"3":__('Jinyantype 3')}, formatter: Table.api.formatter.normal}, // {field: 'is_shouchong', title: __('Is_shouchong'), searchList: {"0":__('Is_shouchong 0'),"1":__('Is_shouchong 1')}, formatter: Table.api.formatter.normal}, {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; });