// 轮播 'use strict'; if (!ismobile) { var swiper = new swiper('body[data-page="news"] .news-slide .swiper-container', { pagination: '.news-slide .swiper-pagination', loop: true, grabcursor: true, paginationclickable: true, // slidesperview: 3, autoplay: 5000 }); } else { var swiper = new swiper('body[data-page="news"] .mobile-news-slide .swiper-container', { pagination: '.mobile-news-slide .swiper-pagination', loop: true, grabcursor: true, paginationclickable: true, // slidesperview: 3, autoplay: 5000 }); } var target = $('.news-list .items'); var tpl = '\n {{each list}}\n \n
\n {{$value.date}}\n \n
\n
{{$value.title}}
\n
{{$value.desc}}
\n
\n {{/each}}\n'; var page = new page({ url: window.urls.antiepidemiclist, moreelement: '#newsmore', morecallback: function morecallback(data) { renderdata(data); } }); page.init().then(function (data) { return renderdata(data); }); function renderdata(data) { target.append(template.render(tpl, { list: data.list })); }