define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {

    var Controller = {
        index: function () {
            // 初始化表格参数配置
            Table.api.init({
                extend: {
                    index_url: 'ghuser/index' + location.search,
                    add_url: 'ghuser/add',
//                    edit_url: 'ghuser/edit',
//                    del_url: 'ghuser/del',
                    multi_url: 'ghuser/multi',
                    import_url: 'ghuser/import',
                    table: 'user',
                }
            });

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',

                commonSearch: true,
                searchFormVisible: false, //搜索框默认展示
                showToggle: false,//修改列表方式
                showColumns: false,//筛选字段
                search:false,    //搜索id
                showExport:false,//导出

                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        {field: 'gh_id', title: __('Gh_id')},
                        {field: 'gonghui.name', title: __('Gonghui.name'), operate: 'LIKE'},
                        {field: 'intro_uid', title: __('Intro_uid')},
                        {field: 'username', title: __('Username'), operate: 'LIKE'},
                        {field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
                        {field: 'introcode', title: __('Introcode'), operate: 'LIKE'},
//                        {field: 'password', title: __('Password'), operate: 'LIKE'},
//                        {field: 'salt', title: __('Salt'), operate: 'LIKE'},
//                        {field: 'email', title: __('Email'), operate: 'LIKE'},
                        {field: 'mobile', title: __('Mobile'), operate: 'LIKE'},
                        {field: 'avatar', title: __('Avatar'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
                        {field: 'real_status', title: __('Real_status'), searchList: {"-1":__('Real_status -1'),"0":__('Real_status 0'),"1":__('Real_status 1'),"2":__('Real_status 2')}, formatter: Table.api.formatter.status},
                        {field: 'gender', title: __('Gender'), searchList: {"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: '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: 'successions', title: __('Successions')},
//                        {field: 'maxsuccessions', title: __('Maxsuccessions')},
//                        {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: 'loginfailure', title: __('Loginfailure')},
//                        {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: 'verification', title: __('Verification'), operate: 'LIKE'},
//                        {field: 'longitude', title: __('Longitude'), operate: 'LIKE'},
//                        {field: 'latitude', title: __('Latitude'), operate: 'LIKE'},
                        {field: 'cityname', title: __('Cityname'), operate: 'LIKE'},
//                        {field: 'photo_images', title: __('Photo_images'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.images},
//                        {field: 'education_id', title: __('Education_id')},
//                        {field: 'hobby_ids', title: __('Hobby_ids'), operate: 'LIKE'},
//                        {field: 'job_id', title: __('Job_id')},
//                        {field: 'marital_id', title: __('Marital_id')},
//                        {field: 'tag_ids', title: __('Tag_ids'), operate: 'LIKE'},
//                        {field: 'wages_id', title: __('Wages_id')},
//                        {field: 'hometown_cityid', title: __('Hometown_cityid')},
                        {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: 'open_match_typing', title: __('Open_match_typing'), searchList: {"1":__('Open_match_typing 1'),"0":__('Open_match_typing 0')}, formatter: Table.api.formatter.normal},
                        {field: 'free_video', title: __('Free_video'), searchList: {"1":__('Free_video 1'),"0":__('Free_video 0')}, formatter: Table.api.formatter.normal},
                        {field: 'free_audio', title: __('Free_audio'), searchList: {"1":__('Free_audio 1'),"0":__('Free_audio 0')}, formatter: Table.api.formatter.normal},
                        {field: 'free_typing', title: __('Free_typing'), searchList: {"1":__('Free_typing 1'),"0":__('Free_typing 0')}, formatter: Table.api.formatter.normal},
//                        {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: 'guild_id', title: __('Guild_id')},
//                        {field: 'is_guild', title: __('Is_guild'), searchList: {"1":__('Is_guild 1'),"0":__('Is_guild 0'),"-1":__('Is_guild -1'),"2":__('Is_guild 2'),"3":__('Is_guild 3')}, formatter: Table.api.formatter.normal},
//                        {field: 'noble', title: __('Noble')},
//                        {field: 'level', title: __('Level')},
//                        {field: 'is_online', title: __('Is_online'), searchList: {"1":__('Is_online 1'),"0":__('Is_online 0')}, formatter: Table.api.formatter.normal},
//                        {field: 'onlinetime', title: __('Onlinetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
//                        {field: 'is_livebc', title: __('Is_livebc'), searchList: {"1":__('Is_livebc 1'),"0":__('Is_livebc 0')}, formatter: Table.api.formatter.normal},
//                        {field: 'wechat_openid', title: __('Wechat_openid'), operate: 'LIKE'},
                        {field: 'register_from', title: __('Register_from'), operate: 'LIKE'},
                        {field: 'is_active', title: __('Is_active'), searchList: {"1":__('Is_active 1'),"0":__('Is_active 0')}, formatter: Table.api.formatter.normal},
                        {field: 'active_time', title: __('Active_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
                        {field: 'wechat_account', title: __('Wechat_account'), operate: 'LIKE'},
                        {field: 'secretvideo_status', title: __('Secretvideo_status'), searchList: {"-1":__('Secretvideo_status -1'),"0":__('Secretvideo_status 0'),"1":__('Secretvideo_status 1'),"2":__('Secretvideo_status 2')}, formatter: Table.api.formatter.status},
//                        {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;
});