layui 打开弹出层追加自定义class设置样式

js:判断处理打开弹框操作

if(layEvent === 'topay'){ //去付款
                getpayAccount();//加载支付账户内容;
                $("#purchase_total").text(data.total_fee);//应付总额
                $("#purchase_paied").text(data.paid_price); //已付金额
                if (data.unpaid_price) {
                    $("#purchase_unpay_price").text(data.unpaid_price);
                } else {
                    $("#purchase_unpay_price").text(0);
                }
                $("input[name=pay_price]").val(data.unpaid_price);
                layer.open({
                    type: 1
                    ,title: '新增付款记录'
                    ,area: ['55%','90%']
                   // ,offset: 'rb'  //打开位置
                    ,shade: 0.5//背景透明度
                    ,anim: 2//打开动画
                    ,isInAnim:true
                    ,isOutAnim:true
                    ,maxmin: true
                    ,content: $("#payMoney")
                    ,skin: 'layui-la

你可能感兴趣的:(layui)