联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
默认的手机端模板页面的加载更多不能用会提示模块不存在有人弄过
类型:迅睿CMS 更新时间:2020-01-08 15:52:31 模板 模块

官方默认的手机端模板,page页面的加载更多不能用,会提示modrid模块不存在,有人弄过么?


<script>
    var Mpage=1;
    //滚动显示更多
    var scroll_get = true;  //做个标志,不要反反复复的加载
    $(document).ready(function () {
        $(window).scroll(function () {
            if (scroll_get==true &&  (400 + $(window).scrollTop())>($(document).height() - $(window).height())) {
                scroll_get = false;
                layer.msg('内容加截中,请稍候',{time:1000});
                dr_ajax_load_more();
            }
        });
    });

    function dr_ajax_load_more(){
        Mpage++;
        $.get('/index.php?s=api&c=api&m=template&name=list_data.html&module=news&catid=3&format=json&page='+Mpage+'&'+Math.random(),function(res){
            $('.footer-cont').hide();
            if(res.code==1){
                if(res.msg==''){
                    $('#is_ajax_btn').hide();
                    layer.msg("已经显示完了",{time:500});
                }else{
                    $('#content_list').append(res.msg);
                    scroll_get = true;
                }
            }else{
                layer.msg(res.msg,{time:2500});
            }
        }, 'json');
    }
</script>