diff --git a/js/article.js b/js/article.js
index e0b0635..87b8336 100644
--- a/js/article.js
+++ b/js/article.js
@@ -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);
diff --git a/js/journal.js b/js/journal.js
index 44ad673..bf455e7 100644
--- a/js/journal.js
+++ b/js/journal.js
@@ -287,7 +287,7 @@ function bf_list() {
if (Jour_num == 2 || Jour_num == 17 | Jour_num == 18) {
$('.current_list>h4').html('Current Volume' + time_ + '');
- } else if(Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9){ // 合并期刊
+ } else if(Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9 || Jour_num == 21){ // 合并期刊
$('.current_list>h4').html('Latest Issue' + time_ + '');
} else {
$('.current_list>h4').html('Current Issue' + time_ + '');
@@ -995,7 +995,7 @@ function bf_list() {
var str = "";
for (var i = 0; i < result.data.journalStage.length; i++) {
- if(Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9){
+ if(Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9 || Jour_num == 21){
// 合并(替换)期刊
if(i==0){str +=''+arr_stage[i].stage_year+'
'}
diff --git a/th/index.html b/th/index.html
index 2e00641..d7fe0eb 100644
--- a/th/index.html
+++ b/th/index.html
@@ -5,7 +5,7 @@