$(function () { /*栏目图片高度*/ var $lbannerImg = $(".l-banner").find("img"); var imgsrc = $lbannerImg.attr("src"); if (imgsrc == "" || imgsrc == undefined) { var imgsrc = $lbannerImg.data("imgsrc"); } //$lbannerImg.attr("src",imgsrc); $(".l-banner").css("backgroundImage","url("+imgsrc+")"); var os = function () { var ua = navigator.userAgent, isWindowsPhone = /(?:Windows Phone)/.test(ua), isSymbian = /(?:SymbianOS)/.test(ua) || isWindowsPhone, isAndroid = /(?:Android)/.test(ua), isFireFox = /(?:Firefox)/.test(ua), isChrome = /(?:Chrome|CriOS)/.test(ua), isTablet = /(?:iPad|PlayBook)/.test(ua) || (isAndroid && !/(?:Mobile)/.test(ua)) || (isFireFox && /(?:Tablet)/.test(ua)), isPhone = /(?:iPhone)/.test(ua) && !isTablet, isPc = !isPhone && !isAndroid && !isSymbian; return { isTablet: isTablet, isPhone: isPhone, isAndroid: isAndroid, isPc: isPc }; }(); if (os.isAndroid || os.isPhone || os.isTablet) { scrollTable() } if (os.isPhone || os.isTablet) { var idIframe = 'wrapperinner-iframe-t'; $(".wp_articlecontent iframe").each(function (i, iframe) { var idsIframe = idIframe + '-' + i; $wrapper = $('
'); $(iframe).wrap($wrapper); var resultContentH = $(iframe).height(); $("#" + ids).height(resultContentH + 20); }); } function scrollTable() { setTimeout(function () { var id = 'wrapperinner-tab-t'; $(".wp_articlecontent table").each(function (i, table) { var ids = id + '-' + i; $wrapper = $('
'); $scroller = $('
'); $(table).wrap($wrapper); $(table).wrap($scroller); var resultContentH = $(table).height(); $("#" + ids).height(resultContentH + 20); var scroller = new IScroll("#" + ids, { eventPassthrough: true, scrollX: true, scrollY: false, preventDefault: false }); setTimeout(function () { scroller.refresh(); }, 60); $(table).data("scroller", scroller); }); }, 30); } if($("#wp_paging_w6").length>0){ $("#wp_paging_w6").after('
') var totalNum=parseInt($(".all_pages").text()); var totalList=parseInt($("em.all_pages").text()); var curpage=parseInt($(".curr_page").text()); var precount=parseInt($(".per_count").text()); // pageMe.js 使用方法 $("#page1").paging({ pageNum: curpage, // 当前页面 totalNum: totalNum, // 总页码 totalList: totalList, // 记录总数量 preCount:precount, callback: function (num) { //回调函数 var url = location.pathname; window.location.href = url.replace(/list(\d*)/gi, "list" + num); } }); } if($(".col_post").length>0){ loadContents(); } function loadContents(){ //排序参数 var orderData = [ {field: 'visitCount', type: 'desc'}, ]; var returnInfos = JSON.stringify(returnData()); var orders = JSON.stringify(orderData); var conditions = JSON.stringify(conditData()); $.ajax({ url: '/_wp3services/generalQuery?queryObj=articles', type: 'POST', contentType: "application/x-www-form-urlencoded; charset=utf-8", async: false, dataType: 'json', data: { siteId:57, columnId:2935, pageIndex:1, rows: 8, orders:orders, returnInfos: returnInfos, conditions:conditions }, success: function(result){ var total = result.total; if (result != null){ //console.log(result); for (j=0;j < result.data.length; j++){ var art = result.data[j]; html = '
  • '+ '
    '+(j+1)+'
    '+ '
    '+ art.publishTime +'
    '+ ' '+ '
  • '; $(".col_post").find("ul.news_list").append(html); } } } }); } /*查询条件*/ function conditData(val){ var myDate = new Date; var year = myDate.getFullYear(); //获取当前年 var mon = myDate.getMonth() + 1; //获取当前月 var starTime=year+'-'+(mon-2)+'-'+1 var endTime=year+'-'+mon+'-'+31 console.log(starTime,endTime) var conditdata = [ //{field: "title", value: val, judge: "like"}, { field: "publishTime", value: starTime, judge: ">="}, { field: "publishTime", value: endTime, judge: "<="}, {field: "scope", value: 0, judge: "="} ]; return conditdata; } //请求返回参数 function returnData(){ var returnInfosdata = [ {field: "visitCount", name: "visitCount"}, {field: "title",pattern: [{name: "lp",value: "30"}], name: "title"}, {field: "publishTime",pattern: [{name: "d",value: "yyyy-MM-dd"}],name: "publishTime"}, ]; return returnInfosdata; } });