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

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

            var table = $("#table");

            //顶部搜索栏
            table.on('post-common-search.bs.table', function (event, table) {
                var form = $("form", table.$commonsearch);
                //类型名称
                $("input[name='campus.title']", form).addClass("selectpage").data("source", "campus/index").data("primaryKey", "id").data("field", "title").data("orderBy", "id desc");
                //$("input[name='activity.title']", form).addClass("selectpage").data("source", "activity/index").data("primaryKey", "id").data("field", "title").data("orderBy", "id desc");
                $("input[name='title']", form).addClass("selectpage").data("source", "item/index").data("primaryKey", "id").data("field", "title").data("orderBy", "id 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,
                showToggle: false,//浏览模式功能关闭
                showColumns: false,//显示隐藏列功能关闭
                //commonSearch: false, //关闭通用搜索按钮
                showExport: false,//导出功能关闭
                clickToSelect: false, //是否启用点击选中
                dblClickToEdit: false, //是否启用双击编辑
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id'), operate: false},
                        // {field: 'campus_id', title: __('Campus_id')},
                        // {field: 'ronda_id', title: __('Ronda_id')},
                        {field: 'campus.title', title: __('所属校区'), operate: 'LIKE'},
                        {field: 'ronda.title', title: __('场次'), operate: false},
                        {field: 'title', title: __('Title'), operate: 'LIKE'},
                        // {field: 'radar_id', title: __('Radar_id')},
                        // {field: 'user_id', title: __('User_id')},
                        {field: 'score', title: __('可获积分'), operate:false},
                        {field: 'user.username', title: __('管理老师'), operate: false},
                        {field: 'user.teach_phone', title: __('User.teach_phone'), operate: false},
                        {field: 'radar.title', title: __('Radar.title'), operate: false},
                        {field: 'createtime', title: __('Createtime'), operate:false, 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: '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;
});