layui.use([ 'laypage', 'layer', 'table',  'element','form'], function(){

    var laypage = layui.laypage //分页
        ,layer = layui.layer //弹层
        ,table = layui.table //表格
        ,element = layui.element //元素操作
        ,form = layui.form;

    var tableIds = 'themelist';  //表格ID
    var reloadId = 'tablerReload';
    //第一个实例
    table.render({
        elem: '#'+tableIds
        ,url: '/dictionarya/themeform' //数据接口
        ,where:{token:csrfToken}
        ,method:'post'
        ,page: true //开启分页
        ,height:600
        ,text:'数据加载中'
        ,id:reloadId
        ,cols: [[ //表头
            // {field: 'id', title: 'ID', width:80, sort: true, fixed: 'left',align:'center'},
            {type:'numbers'},
            {field: 'name', title: '特色主题',align:'center'}
            ,{field: 'update_at', title: '更新时间', width:150,align:'center'}
            ,{field: 'create_at', title: '添加时间', width:150,align:'center'}
            ,{fixed: 'right',title:'操作', width: 165, align:'center', toolbar: '#operate'}

        ]]
    });

    table.reload('tablerReload');        //重新加载

    //列表操作
    table.on('tool('+tableIds+')', function(obj){
        var layEvent = obj.event,
            data = obj.data;
        if(layEvent === 'edit'){
            layer.open({
                type: 2,
                title: '修改特色主题',
                closeBtn: 1, //不显示关闭按钮
                shade: [0],
                area: ['600px', '500px'],
                anim: 2,
                content: '/dictionarya/themeedit?id='+data.id, //iframe的url,no代表不显示滚动条
                end:function(){
                    table.reload('tablerReload');
                }
            });
        } else if(layEvent === 'del') {
            layer.confirm('您确定要删除吗?',{   btn: ['确定', '取消']},function () {
                $.post('/dictionarya/themedel',{'id':data.id},function (data) {
                    if(data.code == 200)
                    {
                        layer.msg(data.msg);
                        table.reload('tablerReload');
                    } else if(data.code == 300 ) {
                        layer.msg(data.msg);
                    }
                })
            })
        }


    });

    var $ = layui.$, active = {
        addData: function(){ //获取选中数据
            layer.open({
                type: 2,
                title: '添加特色主题',
                area: ['600px', '500px'],
                content: '/dictionarya/themeadd', //iframe的url,no代表不显示滚动条
                end:function(){
                    table.reload('tablerReload');
                }
            });
        }
    };

    $('.demoTable .layui-btn').on('click', function(){
        var type = $(this).data('type');
        active[type] ? active[type].call(this) : '';
    });

    //修改
    form.on('submit(edittheme)', function(data){
        $.post('/dictionarya/themeeditform',{'data':data.field},function (data) {
            if(data.code == 200)
            {
                layer.msg(data.msg);
            } else if(data.code == 300 ) {
                layer.msg(data.msg);
            }
        })
        return false;
    });

    //添加
    form.on('submit(addtheme)', function(data){
        $.post('/dictionarya/themeaddform',{'data':data.field},function (data) {
            if(data.code == 200)
            {
                layer.msg(data.msg);
                $('input').val('');
            } else if(data.code == 300 ) {
                layer.msg(data.msg);
            }
        })
        return false;
    });

});