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

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

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        {field: 'user_id', title: __('User_id'), operate: 'LIKE'},
                        {field: 'name', title: __('Name'), operate: 'LIKE'},
                        {field: 'phone', title: __('Phone'), operate: 'LIKE'},
                        {field: 'verification_store_id', title: __('Verification_store_id')},
                        {field: 'type', title: __('Type'), searchList: {"0":__('Type 0'),"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3'),"4":__('Type 4')}, formatter: Table.api.formatter.normal},
                        {field: 'store.name', title: __('Store.name'), operate: 'LIKE'},
                        {field: 'user.nickname', title: __('User.nickname'), operate: 'LIKE'},
                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
                            buttons:[
                                {
                                    name: 'cv_verification_receive',
                                    text:"查看红包",
                                    title: function (row) {
                                        return "查看《"+row.name +"》的发送红包记录"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-success btn-dialog',
                                    icon: 'fa fa-reorder',
                                    url: 'verification/staff/brokerage?verification_store_id={verification_store_id}&send_user_id={user_id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                },
                                {
                                    name: 'cv_verification_receive',
                                    text:"查看分销",
                                    title: function (row) {
                                        return "查看《"+row.name +"》的分销记录"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-success btn-dialog',
                                    icon: 'fa fa-reorder',
                                    url: 'verification/staff/share_list?verification_store_id={verification_store_id}&send_user_id={user_id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                }
                            ]
                        }
                    ]
                ]
            });

            // 为表格绑定事件
            Table.api.bindevent(table);
        },
        add: function () {
            Controller.api.bindevent();
        },
        edit: function () {
            Controller.api.bindevent();
        },

        brokerage: function () {
            // 初始化表格参数配置
            Table.api.init({
                extend: {
                    brokerage_url: 'verification/staff/brokerage' + location.search,
                    table: 'verification_staff',

                }
            });

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.brokerage_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        {field: 'commission', title: __('Commission'), operate: 'LIKE'},
                        {field: 'send_createtime', title: __('SendCreatetime'), operate: 'LIKE'},
                        {field: 'send_result_text', title: __('SendResult'), operate: 'LIKE'},
                        {field: 'send_reason', title: __('SendReason')},
                        {field: 'price', title: __('OrderIdPrice')},

                        {
                            field: 'send_result', title: __('SendR'),
                            formatter: Table.api.formatter.toggle,


                        },

                    ]
                ]
            });

            // 为表格绑定事件

            Table.api.bindevent(table);
        },
        share_list: function () {
            // 初始化表格参数配置
            Table.api.init({
                extend: {
                    share_list_url: 'verification/staff/share_list' + location.search,
                    table: 'user',

                }
            });

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.share_list_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},

                        {field: 'nickname', title: __('User.nickname'), operate: 'LIKE'},
                        {field: 'updatetime', title: __('Updatetime'), operate: 'LIKE'},
                    ]
                ]
            });

            // 为表格绑定事件

            Table.api.bindevent(table);
        },
        api: {
            bindevent: function () {
                Form.api.bindevent($("form[role=form]"));
            }
        }
    };
    return Controller;
});