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

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

            var table = $("#table");

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

                        {field: 'user_count',table:table,title: __('User_count'),events: Table.api.events.operate,
                            buttons: [
                                {
                                    name: 'detail',
                                    text:function (row) {
                                        return '<span style="color:#e74c3c;">'+row.user_count+'</span>'
                                    },
                                    title:function (row) {
                                        return "任务已读状态";
                                    },
                                    classname: 'btn-dialog',
                                    url: function (row) {
                                        return 'inspection/task/showLog/ids/'+row.id;
                                    }
                                }
                            ],
                            formatter: Table.api.formatter.buttons,
                            operate: false
                        },
                        // {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
                        {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,buttons: [
                                {
                                    name: 'ajax',
                                    title: __('事务推送至监管APP'),
                                    classname: 'btn btn-xs btn-success btn-magic btn-ajax',
                                    icon: 'fa fa-paper-plane',
                                    confirm: '确认推送事务到监管APP?',
                                    url: 'inspection/task/sendmessage',
                                    success: function (data, ret) {
                                        // Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
                                        // 如果需要阻止成功提示,则必须使用return false;
                                        console.log(data, ret);
                                        Layer.alert(ret.msg);
                                        return false;
                                    },
                                    error: function (data, ret) {
                                        console.log(data, ret);
                                        Layer.alert(ret.msg);
                                        return false;
                                    }
                                }
                            ], 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;
});