From 0ac15cb648b62b99616103709aa52a57985e5e06 Mon Sep 17 00:00:00 2001
From: "@fawn-nine" <1271023382@qq.com>
Date: Fri, 25 Aug 2023 13:39:34 +0800
Subject: [PATCH] =?UTF-8?q?pmr=E6=9C=9F=E5=88=8A=E5=90=88=E5=B9=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
article.html | 2 +
journals_pmr.html | 151 ++++++++++++++++++++++++++++++++++++++++++++++
js/article.js | 31 ++++++++--
js/journal.js | 22 +++++++
js/side.js | 6 ++
jstmr/side.js | 5 ++
pmr/index.html | 2 +-
side.html | 4 +-
style/style.css | 14 ++++-
9 files changed, 229 insertions(+), 8 deletions(-)
create mode 100644 journals_pmr.html
diff --git a/article.html b/article.html
index 3adbe18..bca3e3d 100644
--- a/article.html
+++ b/article.html
@@ -137,6 +137,7 @@
HTML
Supplementary Material
Manuscript processing
+ Original data
diff --git a/journals_pmr.html b/journals_pmr.html
new file mode 100644
index 0000000..5c88cfd
--- /dev/null
+++ b/journals_pmr.html
@@ -0,0 +1,151 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Coming soon!
+
+
+
+
+
+
+
+
+
Online First
+
More
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/js/article.js b/js/article.js
index 346ddbf..5992f86 100644
--- a/js/article.js
+++ b/js/article.js
@@ -6945,6 +6945,7 @@ function article_con() {
var ttypeName = ''
var li = ""
var ttime = ''
+ var typeClass = ''
switch (result.data.track[tt].type) {
case (0):
ttypeName = 'Received'
@@ -6990,8 +6991,7 @@ function article_con() {
var chushenContent = ''
var timess = ''
// 进入页面前清空
- if(result.data.track[tt].type == 2 && result.data.track[tt].reviewers[er].question.comments !== ''){
-
+ if(result.data.track[tt].type == 2 && result.data.track[tt].reviewers[er].question != null){
chushenContent = ''
timess = ''
chushenContent = result.data.track[tt].reviewers[er].question.comments
@@ -7022,8 +7022,22 @@ function article_con() {
// 获得时间
ttime = timestampToTime(result.data.track[tt].time)
- li = ""+ttime+" " + ttypeName + " "+reviewers+"
"
- lis += li
+ var Revitag = ''
+ if(result.data.track[tt].type == 4 && result.data.track[tt].response){
+ var title = 'Response to reviewers: '
+ var lisss = ''
+ for(var s = 0; s < result.data.track[tt].response.length; s++){
+ var xuhao = s+1
+ var Revfile_url = ''
+ // var tptime = timestampToTime(result.data.track[tt].time)
+ Revfile_url = ''+xuhao+'. Download '
+ //Revitag +=
+ lisss += Revfile_url
+ }
+ Revitag = ''+ title + lisss + '
'
+ }
+ li = ""+ttime+" " + ttypeName + " "+reviewers+ Revitag +"
"
+ lis += li
}
$('.wen_rong .content-box .conterecord').html(lis)
@@ -7033,6 +7047,15 @@ function article_con() {
$('.wen_rong #tablist .tarrecord').css('display', 'none');
}
+ // Original data 附加文件
+ if (j_artc.file_original == '') {
+ // console.log('--------------')
+ $('.wen_rong #tablist .OriginalData').css('display', 'none');
+ $('.wen_rong #tablist .Original').css('display', 'none');
+ } else {
+ $('#OriginalData').html('Original data:----Download
');
+ }
+
if (j_artc.file_pdf == '') {
$('.wen_rong #tablist .tarfipdf').css('display', 'none');
// $('.wen_rong .rong_box .contfdf').css('display','none');
diff --git a/js/journal.js b/js/journal.js
index 569004b..5038064 100644
--- a/js/journal.js
+++ b/js/journal.js
@@ -287,6 +287,8 @@ 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){ // pmr期刊
+ $('.current_list>h4').html('Latest Issue' + time_ + ' ');
} else {
$('.current_list>h4').html('Current Issue' + time_ + ' ');
}
@@ -993,6 +995,25 @@ function bf_list() {
var str = "";
for (var i = 0; i < result.data.journalStage.length; i++) {
+ if(Jour_num == 7){
+ // 合并(替换)期刊
+ // console.log('这是一本合并期刊')
+ if (arr_stage[i].stage_no == '0') {
+ var iss_ = ''
+ } else {
+ var iss_ = ' Issue.' + arr_stage[i].stage_no + ' '
+ }
+ if (arr_stage[i].stage_icon == '') {
+ str += '' +
+ '' + arr_stage[i].stage_year + 'Vol. ' + arr_stage[i].stage_vol
+ + iss_ + arr_stage[i].stage_pagename + arr_stage[i].stage_page + '
'
+ } else {
+ str += '' +
+ '' + arr_stage[i].stage_year + 'Vol. ' + arr_stage[i].stage_vol
+ + iss_ + arr_stage[i].stage_pagename + arr_stage[i].stage_page + '
'
+ }
+ }else{
+ // 常规期刊
if (arr_stage[i].stage_no == '0') {
var iss_ = ''
} else {
@@ -1009,6 +1030,7 @@ function bf_list() {
'' + arr_stage[i].stage_year + ' Vol. ' + arr_stage[i].stage_vol + ' '
+ iss_ + '' + arr_stage[i].stage_pagename + ' ' + arr_stage[i].stage_page + '
'
}
+ }
}
diff --git a/js/side.js b/js/side.js
index 7e86750..ee80d40 100644
--- a/js/side.js
+++ b/js/side.js
@@ -4,6 +4,12 @@ $('.art_side').load('./side.html');
// 底部
$('.footer').load('./footer.html')
+$( document ).ready(function() {
+ // console.log( "document loaded" );
+ $('#kezuoB').hide();
+ // console.log( $('#kezuoB') );
+});
+
// 期刊基础、外链、分期、话题信息加载
function side_list() {
diff --git a/jstmr/side.js b/jstmr/side.js
index 0deae0b..e25db88 100644
--- a/jstmr/side.js
+++ b/jstmr/side.js
@@ -113,6 +113,11 @@ function side_list() {
$('.nav_ban h2').css('display', 'inline-block')
+ $('.Gue_special').css('display', 'none')
+ $('#kezuoB').css('display', 'block');
+ $('.Gue_special').css('display', 'block')
+ console.log($('.Gue_special').length)
+
localStorage.setItem("Journals_title", arr_jour.title);
localStorage.setItem("Journals_issn", arr_jour.issn);
diff --git a/pmr/index.html b/pmr/index.html
index 66297d0..797d959 100644
--- a/pmr/index.html
+++ b/pmr/index.html
@@ -5,7 +5,7 @@
Precision Medicine Research
-
+
diff --git a/side.html b/side.html
index 3c8bf8d..9e06f2d 100644
--- a/side.html
+++ b/side.html
@@ -98,8 +98,8 @@
-
Special Issue Proposal Application
+
Special Issue Proposal Application
diff --git a/style/style.css b/style/style.css
index a499784..ec46fc1 100644
--- a/style/style.css
+++ b/style/style.css
@@ -4954,4 +4954,16 @@ ul li .ab_tad {
/* 审稿详细样式 */
.detailsBtn{color: #069; cursor: pointer; font-style: normal; margin-left: 15px; font-size: 16px; font-weight: bold;}
.shenheComments{padding: 20px; line-height: 32px; color: #333;}
-.shenheComments p span{font-weight: bold;}
\ No newline at end of file
+.shenheComments p span{font-weight: bold;}
+
+.filerev{margin-top: 15px;}
+.filerev h4{font-size: 18px; margin-bottom: 15px; display: inline-block;}
+.filerev a{color:#069}
+
+.hebingTop {padding-top: 32px; margin-bottom: 32px; }
+.hebingTop .js-title-evolution-prefix{ font-weight: bold;}
+.hebingTop .about-container{background-color: #fff; width:1060px; padding: 15px; margin: 0 auto; overflow: hidden; padding-left: 25px;}
+.hebingTop .about-container .js-title-evolution{ display: block; font-size: 30px; margin: 32px 0; }
+.hebingTop .about-container a{color: #007398; }
+.hebingTop .about-container a span{ font-weight: bold !important;}
+.merageList li a p{position: static !important; display: block !important; padding: 20px 0 !important;}
\ No newline at end of file