coupon.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: 'verification/coupon/index' + location.search,
                    add_url: 'verification/coupon/add',
                    edit_url: 'verification/coupon/edit',
                    del_url: 'verification/coupon/del',
                    multi_url: 'verification/coupon/multi',
                    import_url: 'verification/coupon/import',
                    table: 'verification_coupon',
                }
            });

            var table = $("#table");

            // 初始化表格
            table.bootstrapTable({
                url: $.fn.bootstrapTable.defaults.extend.index_url,
                pk: 'id',
                sortName: 'id',
                fixedColumns: true,
                fixedRightNumber: 1,
                columns: [
                    [
                        {checkbox: true},
                        {field: 'id', title: __('Id')},
                        {field: 'verification_store_id', title: __('verification_store_id')},
                        {field: 'name', title: __('Name'), operate: 'LIKE'},
                        {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
                        {field: 'closetime', title: __('Closetime'), 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: 'type', title: __('Type'), searchList: {"0":__('Type 0'),"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3')}, formatter: Table.api.formatter.normal},
                        {field: 'voucher_amount', title: __('Voucher_amount'), operate:'BETWEEN'},
                        {field: 'gift', title: __('Gift'), operate: 'LIKE'},
                        {field: 'consumption', title: __('Consumption'), operate:'BETWEEN'},
                        {field: 'reduction', title: __('Reduction'), operate:'BETWEEN'},
                        {field: 'consumption_name', title: __('Consumption_name'), operate: 'LIKE'},
                        {field: 'image', title: __('Image'), operate: false, events: Table.api.events.image, formatter: Table.api.formatter.image},
                        {field: 'store.name', title: __('Store.name'), operate: 'LIKE'},
                        {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
                    ]
                ]
            });

            // 为表格绑定事件
            Table.api.bindevent(table);
        },
        add: function () {
            var row=$("#c-type").val()
            showhide(row)
            $("#c-type").change(function(){
                var row=$("#c-type").val()
               
                showhide(row)
            });
            function showhide(row) {
                if(row==0){
                    $("#d-voucher_amount").show()
                    $("#d-gift").hide()
                    $("#d-consumption").hide()
                    $("#d-reduction").hide()
                    $("#d-consumption_name").hide()
                }
                if(row==1){
                    $("#d-voucher_amount").hide()
                    $("#d-gift").show()
                    $("#d-consumption").hide()
                    $("#d-reduction").hide()
                    $("#d-consumption_name").hide()
                }
                if(row==2){
                    $("#d-voucher_amount").hide()
                    $("#d-gift").hide()
                    $("#d-send_rule_limit").hide();
                    $("#d-consumption").hide()
                    $("#d-reduction").hide()
                    $("#d-consumption_name").show()
                }
                if(row==3){
                    $("#d-voucher_amount").hide()
                    $("#d-gift").hide()
                    $("#d-consumption").show()
                    $("#d-reduction").show()
                    $("#d-consumption_name").hide()
                }
            }


            Controller.api.bindevent();

        },
        edit: function () {
            var row=$("#c-type").val()
            
            showhide(row)
            $("#c-type").change(function(){
                var row=$("#c-type").val()
               
                showhide(row)
            });
            function showhide(row) {
                if(row==0){
                    $("#d-voucher_amount").show()
                    $("#d-gift").hide()
                    $("#d-consumption").hide()
                    $("#d-reduction").hide()
                    $("#d-consumption_name").hide()
                }
                if(row==1){
                    $("#d-voucher_amount").hide()
                    $("#d-gift").show()
                    $("#d-consumption").hide()
                    $("#d-reduction").hide()
                    $("#d-consumption_name").hide()
                }
                if(row==2){
                    $("#d-voucher_amount").hide()
                    $("#d-gift").hide()
                    $("#d-send_rule_limit").hide();
                    $("#d-consumption").hide()
                    $("#d-reduction").hide()
                    $("#d-consumption_name").show()
                }
                if(row==3){
                    $("#d-voucher_amount").hide()
                    $("#d-gift").hide()
                    $("#d-consumption").show()
                    $("#d-reduction").show()
                    $("#d-consumption_name").hide()
                }
            }

            Controller.api.bindevent();
        },
        api: {
            bindevent: function () {

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