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

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

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
//                        {field: 'user_id', title: __('User_id')},
                        {field: 'auser.username', title: __('aUser.username')},
                        {field: 'auser.nickname', title: __('aUser.nickname'), operate: 'LIKE'},

//                        {field: 'down_uid', title: __('Down_uid')},
                        {field: 'buser.username', title: __('bUser.username')},
                        {field: 'buser.nickname', title: __('bUser.nickname'), operate: 'LIKE'},
                        {field: 'buser.gender', title: __('bUser.gender'), searchList: {"-1":__('bUser.gender -1'),"1":__('bUser.gender 1'),"0":__('bUser.gender 0')}, formatter: Table.api.formatter.normal},

                        {field: 'buser.jointime', title: __('bUser.jointime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},

                        {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, 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;
});