article_report.js 6.1 KB
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {

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

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                search:false,
                visible: false,
                showToggle: false,
                showColumns: false,
                howExport: false,
                operate: false,
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        //{field: 'user_id', title: __('User_id')},
                        {field: 'avatar', title: __('Avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
                        {field: 'nickname', title: __('Nickname'), operate: 'LIKE'},
                        {field: 'username', title: __('Username'), operate: 'LIKE'},
                        {field: 'mobile', title: __('Mobile'), operate: 'LIKE'},
                        {field: 'article_id', title: __('Article_id')},
                        {field: 'content', title: __('Content'), operate: 'LIKE'},
                        {field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1')}, formatter: Table.api.formatter.status},
                        {field: 'message', title: __('Message'), operate: 'LIKE'},
                        //{field: 'report_type_id', title: __('Report_type_id')},
                        {field: 'report_type_name', title: __('Report_type_name'), operate: 'LIKE'},
                        {field: 'createtime', title: __('Createtime'), operate:'RANGE', 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: 'edit_article',
                                    text: __('查看动态'),
                                    title: __('查看动态'),
                                    classname: 'btn btn-xs btn-success btn-dialog',
                                    icon: 'fa fa-unlock',
                                    url:function (data){
                                        console.log(Config.url + $.fn.bootstrapTable.defaults.extend.article_edit_url+"/ids/"+data.article_id)
                                        return Config.url + $.fn.bootstrapTable.defaults.extend.article_edit_url+"/ids/"+data.article_id;
                                    },
                                    // url:"article/edit2/article_id/{article_id}",
                                    callback: function (data) {
                                        Layer.alert("接收到回传数据:" + JSON.stringify(data), {title: "回传数据"});
                                    },
                                    visible: function (row) {
                                        return true;
                                    }
                                },
                                {
                                    name: 'ajax',
                                    text: __('删除动态'),
                                    classname: 'btn btn-xs btn-danger btn-magic btn-ajax',
                                    icon: 'fa fa-window-close',
                                    //url: 'example/bootstraptable/detail',
                                    confirm: '您确认删除动态吗!',
                                    url:function (data){
                                        console.log(Config.url + $.fn.bootstrapTable.defaults.extend.article_del_url+"/ids/"+data.article_id)
                                        return Config.url + $.fn.bootstrapTable.defaults.extend.article_del_url+"/ids/"+data.article_id;
                                    },
                                    success: function (data, ret) {
                                        Layer.alert(ret.msg + ",返回数据:" + JSON.stringify(data));
                                        //如果需要阻止成功提示,则必须使用return false;
                                        //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;
});