xuhy
2023-03-08 9a50a7ea9688a1e777f98713560e9c599d5064ae
management/guns-admin/src/main/webapp/static/modular/system/tCoupon/tCoupon.js
@@ -104,7 +104,7 @@
    var index = layer.open({
        type: 2,
        title: '添加',
        area: ['800px', '420px'], //宽高
        area: ['100%', '100%'], //宽高
        fix: false, //不固定
        maxmin: true,
        content: Feng.ctxPath + '/tCoupon/tCoupon_add'
@@ -162,6 +162,28 @@
};
/**
 * 选择新人券或者活动券时
 */
TCoupon.changeCouponType = function (id,couponState) {
    //监听下拉菜单的变动操作
    $("#couponType").change(function(){
        // 如果选择活动券,将赠送数量隐藏
        if(this.value == 1){
            $("#changeCouponSendQuantity").hide()
        }
        if(this.value == ""){
            $("#changeCouponSendQuantity").hide()
        }
        if(this.value == 2){
            $("#changeCouponSendQuantity").show()
        }
    })
};
/**
 * 查询列表
 */
TCoupon.search = function () {