49 lines
1.7 KiB
JavaScript
Executable File
49 lines
1.7 KiB
JavaScript
Executable File
// 获取浏览记录
|
|
function getHistory(){
|
|
$('#Load').show();
|
|
loading = true;
|
|
var param = {};
|
|
param.pagesize = 10;
|
|
param.page = Number( $('#currPage').val() ) + 1;
|
|
$.post(WST.U('wechat/goods/historyQuery'), param, function(data){
|
|
var json = WST.toJson(data);
|
|
var html = '';
|
|
if(json && json.Rows && json.Rows.length>0){
|
|
var gettpl = document.getElementById('list').innerHTML;
|
|
laytpl(gettpl).render(json.Rows, function(html){
|
|
$('#listBox').append(html);
|
|
});
|
|
$('#currPage').val(data.CurrentPage);
|
|
$('#totalPage').val(data.TotalPage);
|
|
}else{
|
|
html += '<div class="wst-prompt-icon"><img src="'+ window.conf.WECHAT +'/img/nothing-history.png"></div>';
|
|
html += '<div class="wst-prompt-info">';
|
|
html += '<p>暂无浏览记录</p>';
|
|
html += '<button class="ui-btn-s" onclick="javascript:WST.intoIndex();">去逛逛</button>';
|
|
html += '</div>';
|
|
$('#listBox').html(html);
|
|
}
|
|
WST.imgAdapt('j-imgAdapt');
|
|
loading = false;
|
|
$('#Load').hide();
|
|
echo.init();//图片懒加载
|
|
});
|
|
}
|
|
var currPage = totalPage = 0;
|
|
var loading = false;
|
|
$(document).ready(function(){
|
|
WST.initFooter();
|
|
getHistory();
|
|
$(window).scroll(function(){
|
|
if (loading) return;
|
|
if ((5 + $(window).scrollTop()) >= ($(document).height() - screen.height)) {
|
|
currPage = Number( $('#currPage').val() );
|
|
totalPage = Number( $('#totalPage').val() );
|
|
if( totalPage > 0 && currPage < totalPage ){
|
|
getHistory();
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|