This commit is contained in:
@fawn-nine
2023-11-21 13:13:09 +08:00
parent 48d9814bd2
commit 12d7ba3bf8
3 changed files with 4 additions and 4 deletions

View File

@@ -5646,7 +5646,7 @@ function at_list() {
$('.wenz_list>h4').html('Highlights');
}
totalPage = result.data.count % top_top.pageSize;
totalPage = result.data.count % top_top.pageSize == 0 ? (result.data.count / top_top.pageSize) : (Math.ceil(result.data.count / top_top.pageSize));
totalRecords = result.data.count;
$('.wenz_list .tioashu').html(result.data.count);