Authored by biao

update for pagnition type

... ... @@ -151,7 +151,7 @@ function bindPaginationClick() {
$('.blk-pagination li').off('click').on('click', function(e) {
var $this = $(this);
var page = $this.find('a').attr('href').split('=')[1];
var type = getQueryString().type;
var type = getCurrentTabType();
e.preventDefault();
... ... @@ -160,7 +160,7 @@ function bindPaginationClick() {
$this.addClass('active');
$(window).scrollTop(0);
getOrderList(type, page);
getOrderList(typeMap[type], page);
}
});
... ...