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

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

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id'), operate:false},
                        {field: 'study_id', title: __('学习科目'),searchList:$.getJSON('dan/type')},
                        {field: 'answer', title: __('Answer'), operate:false},
                        {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
                        // {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', 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();
            $(function(){
                var value1 = $('input[type=radio]:checked').val();
                type(value1);
                $('input[type=radio]').change(function () {
                    var value = $(this).val();
                    type(value);
                });
            });

            function type(value) {
                console.log(value);
                if(value == 1){
                    //名称显示,图片隐藏
                    $('.world').css('display','block');
                    $('.pic').css('display','none');
                }else if(value == 2){
                    //名称隐藏,图片显示
                    $('.world').css('display','none');
                    $('.pic').css('display','block');
                }
            }
        },
        edit: function () {
            Controller.api.bindevent();
            $(function(){
                var value1 = $('input[type=radio]:checked').val();
                type(value1);
                $('input[type=radio]').change(function () {
                    var value = $(this).val();
                    type(value);
                });
            });

            function type(value) {
                console.log(value);
                if(value == 1){
                    //名称显示,图片隐藏
                    $('.world').css('display','block');
                    $('.pic').css('display','none');
                }else if(value == 2){
                    //名称隐藏,图片显示
                    $('.world').css('display','none');
                    $('.pic').css('display','block');
                }
            }
        },
        api: {
            bindevent: function () {


                $(document).on('click', '.plupload', function () {
                    Form.events.plupload($("form[role=form]"));
                    return false;
                });

                $(document).on('change', '.image', function () {
                    console.log($(this).prev('a').html());
                    $(this).prev('a').find('img').attr('src', $(this).val());
                    return false;
                });




                Form.api.bindevent($("form[role=form]"));
            }
        }
    };
    return Controller;
});