|
@@ -135,6 +135,7 @@ $(function () {
|
|
|
$('.pagePre').after(pageArr.join(''));
|
|
|
$('footer').show();
|
|
|
colFun();
|
|
|
+
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -252,25 +253,30 @@ $(function () {
|
|
|
if($(this).hasClass('active')){
|
|
|
$(this).removeClass('active');
|
|
|
dataList.sortType='';
|
|
|
- loadDate(1);
|
|
|
+ thePageNo=1
|
|
|
+ loadDate(thePageNo);
|
|
|
}else{
|
|
|
$('.colNumber').removeClass('active')
|
|
|
$(this).addClass('active');
|
|
|
dataList.sortType=0;
|
|
|
- loadDate(1);
|
|
|
+ thePageNo=1;
|
|
|
+ loadDate(thePageNo);
|
|
|
}
|
|
|
})
|
|
|
$('.sort .colNumber').click(function(){
|
|
|
if($(this).hasClass('active')){
|
|
|
$(this).removeClass('active');
|
|
|
dataList.sortType='';
|
|
|
- loadDate(1)
|
|
|
+ thePageNo=1;
|
|
|
+ loadDate(thePageNo);
|
|
|
}else{
|
|
|
$('.relTime').removeClass('active')
|
|
|
$(this).addClass('active');
|
|
|
dataList.sortType=1;
|
|
|
- loadDate(1)
|
|
|
+ thePageNo=1;
|
|
|
+ loadDate(thePageNo);
|
|
|
}
|
|
|
})
|
|
|
+
|
|
|
}
|
|
|
})
|