yyxz.js 1.64 KB
layui.use('element', function () {
    let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块
});
$(function () {
    $('.layui-breadcrumb a').eq(1).attr('href',GetQueryString('href'));
    $('.layui-breadcrumb a').eq(1).text(decodeURI(GetQueryString('title')));
    compileData();
})
function compileData() {
    var accept = $('.accept');
    $('.next_button button').click(function () {
        if ($('.checkbox').find(".img").length>0) {
            layui.use('layer', function () {
                var layer = layui.layer;
                layer.confirm('本人承诺所填的预约信息属实,如有虚假,将承担法律责任', {
                    title: '真实准确的承诺',
                    scrollbar: false,
                    btn: ['不同意', '同意进入下一步'] //按钮
                }, function () {
                    layer.closeAll();
                }, function () {
                    window.open("./xzqy.html?title="+decodeURI(GetQueryString('title'))+"&href="+GetQueryString('href'), "_self")
                });
            });
    
        } else {
            layui.use('layer', function () {
                layer.msg('请先同意以上协议', function(){
                    //关闭后的操作
                    });
            })
        }
    })
    $('.checkbox').click(function(){
        if($(this).find(".img").length >0){
            $(this).find('.img').remove()
            $(this).addClass('.bordernone')
        }else {
            $(this).append("<img class='img' src='../staticImages/check.png'>")
            $(this).removeClass('.bordernone')
        }
    })
}