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.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_text', title: __('Campus_ids'), operate: 'LIKE',
//                             formatter : function(value, row, index, field){
//                                 return "<span style='display: block;overflow: hidden;text-overflow: ellipsis;white-space:nowrap;' title='" + row.campus_text + "'>" + value + "</span>";
//                             },
//                             cellStyle : function(value, row, index, field) {
//                                 return {
//                                     css: {
//                                         "white-space": "nowrap",
//                                         "text-overflow": "ellipsis",
//                                         "overflow": "hidden",
//                                         "max-width": "150px"
//                                     }
//                                 };
//                             },
//                         },
                        //{field: 'ronda_text', title: __('Ronda_ids'), operate: false,formatter:Table.api.formatter.flag},
                        {field: 'title', title: __('Title'), operate: 'LIKE'},
// {field: 'radar_id', title: __('Radar_id')},
// {field: 'user_id', title: __('User_id')},
                        {field: 'user.nickname', title: __('User.nickname'), operate: false},
                        {field: 'user.teach_phone', title: __('User.teach_phone'), operate: false},
                        {field: 'radar_text', title: __('Radar.title'), operate: false, formatter: Table.api.formatter.label},
                        {field: 'score', title: __('Score'), 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,
                            buttons: [
                                {
                                    name: 'details',
                                    text: __('学生信息'),
                                    title: __('学生信息'),
                                    classname: 'btn btn-xs btn-primary btn-dialog',
                                    icon: 'fa fa-list',
                                    url: 'item/details',
                                    callback: function (data) {
                                        Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
                                    },
                                },
                            ],
                            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;
});