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

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

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        {field: 'name', title: __('Name'), operate: 'LIKE'},
                        {field: 'address', title: __('Address'), operate: 'LIKE'},
                        {field: 'phone', title: __('Phone'), operate: 'LIKE'},
                        {field: 'commission', title: __('Commission'), operate: 'LIKE'},
                        {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
                        {field: 'agent_image', title: __('Agent_image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
                            buttons:[

                                {
                                    name: 'cv_verification_activity',
                                    text:"门店活动",
                                    title: function (row) {
                                        return "查看《"+row.name +"》门店活动"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-danger btn-dialog',
                                    icon: 'fa fa-ticket',
                                    url: 'verification/activity/index?verification_store_id={id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                },{
                                    name: 'cv_verification_coupon',
                                    text:"优惠卷",
                                    title: function (row) {
                                        return "查看《"+row.name +"》门店优惠卷"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-warning btn-dialog',
                                    icon: 'fa fa-credit-card',
                                    url: 'verification/coupon/index?verification_store_id={id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                },{
                                    name: 'cv_verification_staff',
                                    text:"门店员工",
                                    title: function (row) {
                                        return "查看《"+row.name +"》门店员工"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-primary btn-dialog',
                                    icon: 'fa fa-drivers-license-o',
                                    url: 'verification/staff/index?verification_store_id={id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                },
                                {
                                    name: 'cv_verification_order',
                                    text:"门店订单",
                                    title: function (row) {
                                        return "查看《"+row.name +"》门店订单"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-info btn-dialog',
                                    icon: 'fa fa-reorder',
                                    url: 'verification/order/index?verification_store_id={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/receive/index?verification_store_id={id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                },{
                                    name: 'cv_verification_cancel',
                                    text:"核销记录",
                                    title: function (row) {
                                        return "查看《"+row.name +"》核销记录"
                                    },
                                    extend:'data-area=["94%","94%"]',
                                    classname: 'btn btn-xs btn-info btn-dialog',
                                    icon: 'fa fa-reorder',
                                    url: 'verification/cancel/index?verification_store_id={id}',
                                    visible: function (row) {
                                        return true;
                                    },
                                },
                            ]}
                    ]
                ],fixedColumns: true, //固定右侧列数
                fixedRightNumber: 1,
            });

            // 为表格绑定事件
            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;
});