tijiao 合并food

This commit is contained in:
2025-05-29 11:44:37 +08:00
parent 756392afc7
commit 63f80e86f3
10 changed files with 956 additions and 664 deletions

View File

@@ -321,7 +321,7 @@
margin-top: 20px;
margin-bottom: 20px;
font-weight: 600;
color: rgb(0, 138, 0);
color: #012169;
font-size: 20px;
}
@@ -330,7 +330,7 @@
margin-top: 20px;
margin-bottom: 10px;
font-weight: 600;
color: rgb(0, 138, 0);
color: #012169+;
font-size: 18px;
}

View File

@@ -5,7 +5,7 @@
<title>Food and Health</title>
<link rel="shortcut icon" href="../img/tmr3.png" type="image/x-icon"/>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="../journals.html?J_num=12" scrolling="auto" noresize>
<frame name="main" src="../journals_fh.html?J_num=12" scrolling="auto" noresize>
</frameset>
</head>

View File

@@ -1,66 +1,70 @@
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<link rel="shortcut icon" href="img/tmr3.png" type="image/x-icon"/>
<link rel="shortcut icon" href="img/tmr3.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="style/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style/style.css"/>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
<div id="col-content">
<div id="top_bar">
<!--头部-->
</div>
<div class="article">
<div class="for_mess">
<!--期刊信息-->
<a href=""><img src="" alt=""></a>
<div class="for_all">
<p style="width: 100%;font-size: 20px;margin-bottom: 20px;margin-left: -3px"><b class="fr_tit"></b></p>
<p><b>ISSN:</b><span class="fr_issn"></span></p>
<p><b>Editor-in-Chief:</b><span class="fr_edit"></span></p>
<p><b>Editorial Board:</b>
<a href="" target="_blank" class="fr_board"><img src="img/details.png"></a>
</p>
<p><b>Acceptance:</b><span class="fr_accep"></span></p>
<p><b>Final Decision:</b><span class="fr_final"></span></p>
<p><b>APC:</b><span class="fr_APC"></span></p>
<p><b>Frequency:</b><span class="fr_cycle"></span></p>
<p><b>E-Mail:</b><span class="fr_email"></span></p>
<br clear="both">
<div><a href="" target="_blank" class="fr_subtem">Submission System</a></div>
</div>
<br clear="both">
<div id="col-content">
<div id="top_bar">
<!--头部-->
</div>
<div style="padding-top: 10px">
<ul id="for_nag" class="need_fix">
<!-- 锚点导航-->
</ul>
<div class="for_mnall">
<div id="for_main" style="position: relative;">
<!-- 锚点内容-->
<div class="article">
<div class="for_mess">
<!--期刊信息-->
<a href=""><img src="" alt=""></a>
<div class="for_all">
<p style="width: 100%;font-size: 20px;margin-bottom: 20px;margin-left: -3px"><b class="fr_tit"></b>
</p>
<p><b>ISSN:</b><span class="fr_issn"></span></p>
<p><b>Editor-in-Chief:</b><span class="fr_edit"></span></p>
<p><b>Editorial Board:</b>
<a href="" target="_blank" class="fr_board"><img src="img/details.png"></a>
</p>
<p><b>Acceptance:</b><span class="fr_accep"></span></p>
<p><b>Final Decision:</b><span class="fr_final"></span></p>
<p><b>APC:</b><span class="fr_APC"></span></p>
<p><b>Frequency:</b><span class="fr_cycle"></span></p>
<p><b>E-Mail:</b><span class="fr_email"></span></p>
<br clear="both">
<div><a href="" target="_blank" class="fr_subtem">Submission System</a></div>
</div>
<br clear="both">
</div>
<div style="padding-top: 10px">
<ul id="for_nag" class="need_fix">
<!-- 锚点导航-->
</ul>
<div class="for_mnall">
<div id="for_main" style="position: relative;">
<!-- 锚点内容-->
</div>
</div>
<br clear="both">
</div>
<br clear="both">
</div>
<div class="footer">
<!--底部菜单栏-->
</div>
</div>
<div class="footer">
<!--底部菜单栏-->
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="js/return-top.js"></script>
<script src="js/simpleNavFollowing.js"></script>
<script src="js/js.js"></script>
<script src="js/side.js"></script>
<script src="js/forAuthor.js"></script>
<!--<script src="js/not_map.js"></script>-->
<script>
@@ -133,7 +137,10 @@
$('.for_mess div .fr_edit').html(arr_jour.editorinchief);
$('.for_mess div .fr_accep').html(arr_jour.acceptance);
$('.for_mess div .fr_final').html(arr_jour.finaldecision);
$('.for_mess div .fr_APC').html(arr_jour.apc);
initForAuthor(Jour_num,arr_jour)//临时改的 合刊在删 放开
// $('.for_mess div .fr_APC').html(apcStr);
$('.for_mess div .fr_board').attr('href', arr_jour.board_url); // 编委会
$('.for_mess div a.fr_subtem').attr('href', arr_jour.submission_url);//投稿
// 出版周期匹配
@@ -186,7 +193,7 @@
$.ajax({
type: 'post', url: apiUrl + 'api/Journal/getForAuthors',
data: {'journal_id': getQueryString('J_num')},
data: { 'journal_id': getQueryString('J_num') },
success: function (result) {
if (result.code == 0) {
var arr = result.data.forAuthors;
@@ -252,4 +259,5 @@
});
</script>
</html>

175
journals_fh.html Normal file
View File

@@ -0,0 +1,175 @@
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<link rel="shortcut icon" href="img/tmr3.png" type="image/x-icon" />
<link rel="stylesheet" href="js/line-switch/css/reset.css">
<link rel="stylesheet" type="text/css" href="style/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="js/selectivity/selectivity-jquery.css">
<link rel="stylesheet" type="text/css" href="js/line-switch/time.css" />
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body class="overall_caption">
<!-- 放大遮罩层 -->
<div id="bigimg" onclick="closeimg();"></div>
<div id="wide-content">
<div id="top_bar">
<!--头部-->
</div>
<div class="journal-about-section hebingTop newHebingTop">
<div class="about-section-background-area">
<div class="about-container">
<div class="text-s u-margin-xs-ver u-clr-grey7 js-title-evolutions">
<div class="js-title-evolution-group">
<!-- 暂时去掉 -->
<span class="js-title-evolution">
<!-- <span class="js-title-evolution-prefix">Incorporated into </span>
<a class="anchor anchor-default" href="/im/" target="_blank" usagezone="jrnl_info">
<span class="anchor-text">TMR Integrative Medicine</span>
</a> -->
<!-- 暂时去掉 -->
<span class="js-title-evolution-prefix">
<span class="have-italic">Food and Health</span> incorporated into <span class="have-italic">Integrative Medicine Discovery</span>
(ISSN 3021-1670). This strategic decision aims to enhance the scope of our platform for research in <span class="have-italic">Integrative Medicine Discovery</span>.
<span class="have-italic">Integrative Medicine Discovery</span> is a peer-reviewed, serialization open access (SOA) journal managed by TMR Publishing Group.
The aim of <span class="have-italic">Integrative Medicine Discovery</span> is to supply a platform to explore the scientific connotation and new findings of traditional Medicines around the world based on a holistic view using multidisciplinary knowledge.
<span class="have-italic">Integrative Medicine Discovery</span> covers evidence-based medicine, integrative pharmacology, integrative oncology, herbal formulae, non-drug therapy.
For the latest published articles, please visit <a class="anchor anchor-default" href="/im/" target="_blank" usagezone="jrnl_info">
<span class="anchor-text">Integrative Medicine Discovery</span>
</a>.
</span>
</span>
</div>
</div>
</div>
<div class="society-logo u-hide-from-md"></div>
</div>
</div>
<!-- 暂时去掉 start -->
<!-- <div class="article">
<div class="art_main art_main_con hebingMain" style="width:100% !important">
<div class="art_main_con_topic">
<div style="background-color: #fff;"></div>
</div>
<div style="height: 15px;background-color: #f8f8f8" class="wh_topicd"></div>
<div class="new_art current_list">
<h4 class="rgb_color"><span></span></h4>
<ul>
</ul>
</div>
<div class="wait_hope">
<h3>Coming soon!</h3>
</div>
</div>
<br clear="both">
</div> -->
<!-- 暂时去掉 end -->
<div class="hebingTop" style="padding-top:0px;">
<div class="article_ about-container">
<div class="news_ment alls_issue">
<h4 class="rgb_color" style="padding-left: 15px;border: none;padding-bottom: 3px;padding: 0;">
Archiving</h4>
<!-- <a href="" class="more" target="_blank" style="margin-top: 16px;">More</a> -->
<div class="merdiv" style="overflow-x: hidden; transform: none !important;">
<ul class="stage_time stage_time_mer"
style="padding: 0; white-space:normal; transform:none !important">
<!--All Issues过期封面-->
</ul>
</div>
</div>
</div>
</div>
<div class="footer">
<!--底部菜单栏-->
</div>
</div>
<div class="footpanel">
<!-- 固定底栏-->
<i class="ftp_close fa fa-close"></i>
<div class="ftp_paper">
<div class="fpr_text">
<h3>Subscribe to receive latest research and news from <b></b></h3>
<p>We will exclusively utilize your email address to inform you about the release of new articles. You
have the freedom to unsubscribe at any given moment.</p>
</div>
<div class="fpr_from">
<p>Email address</p>
<div>
<input type="text" id="emapfp" value="" placeholder="Please enter a valid email address" />
<input type="submit" value="Subscribe" class="yue_addfp" />
<br>
<label>
<input type="checkbox" name="ment" value="0">
<p class="ff_text">I agree my information will be processed in accordance with TMR Publishing
Group
<a target="_blank" href="agree.html">Privacy Policy</a>.
</p>
<br clear="both">
</label>
<span class="spa spafp"></span>
</div>
<div>
</div>
</div>
<br clear="both">
</div>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script src="echarts-master/echarts.min.js"></script>
<script src="echarts-master/world.js"></script>
<script src="js/clipboard.js"></script>
<script src="js/return-top.js"></script>
<script src="js/layer/layer.js"></script>
<script src="js/line-switch/js/modernizr.js"></script>
<script src="js/line-switch/js/jquery.mobile.custom.min.js"></script>
<script src="js/line-switch/js/main.js"></script>
<script src="jss/jcMarquee.js" type="text/javascript"></script>
<script type="text/javascript" src="js/selectivity/selectivity-jquery.js"></script>
<script src="js/js.js"></script>
<script src="js/side.js"></script>
<script src="js/journal.js"></script>
<script src="js/not_map.js"></script>
<script>
$(function () {
side_list();
bf_list();
});
</script>
</html>

View File

@@ -3,7 +3,25 @@ var commonSupColor = 'rgb(0,112,192)'//上角标颜色
var commonTableTitleColor = 'rgb(210,90,90)'//上角标颜色
var commonSupFontColor = 'color:rgb(0,112,192);'//上角标字体颜色
function loadMathJax(callback) {
const script = document.createElement('script');
// 可选:配置 MathJax必须在加载 script 前设置)
window.MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']],
displayMath: [['$$', '$$'], ['\\[', '\\]']]
},
startup: {
typeset: false // 不自动 typeset手动触发更灵活
}
};
script.src = 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js';
script.onload = callback;
document.head.appendChild(script);
}
loadMathJax()
// 列表
function at_list() {
@@ -8598,6 +8616,14 @@ function initArticleHtmlFun(arr, result, html_type) {
<img src="${picsrc}" onclick="${fun}" style="width: ${item.width ? `${item.width}px` : '80%'
}" />
<p class="font htmlImageTitle commonTableTitleColor" style="width: ${item.width ? `${item.width}px` : '100%'};
font-size: 14px;
font-family: 'Charis SIL';
font-weight:normal;
line-height: 22px;
text-align:center;" >${item.image.title ? item.image.title : ''
}</p>
<p class="font htmlImageNote" style="width: ${item.width ? `${item.width}px` : '100%'};
font-size: 14px;
@@ -8659,12 +8685,11 @@ ${rowData
.join('')}
</table>
<p class="font" style="width: ${item.width ? `${item.width}px` : '100%'};
font-size: 14px;
font-family: 'Charis SIL';
font-weight: 500 !important;
line-height: 22px;
text-align:center;color:#333;" >${item.table.note ? item.table.note : ''
text-align:left;color:#333;" >${item.table.note ? item.table.note : ''
}</p>
</div>
`;
@@ -8726,7 +8751,13 @@ text-align:center;color:#333;" >${item.table.note ? item.table.note : ''
initArticleHtml(arr, result.data.refers, html_type)
}
function initArticleHtml(htmlData, refs, type) {
document.querySelectorAll('wmath').forEach(el => {
const latex = el.getAttribute('data-latex');
if (latex) {
el.innerHTML = latex;
MathJax.typesetPromise([el]);
}
});
$('.wen_rong .content-box .conthtmn .Ptitle').css({
background: 'rgb(222, 235, 247)',
'color': commonTableTitleColor, // No !important here
@@ -8846,7 +8877,10 @@ function initArticleHtml(htmlData, refs, type) {
this.style.setProperty('color', commonTableTitleColor, 'important');
this.style.setProperty('text-align', 'center', 'important');
});
$('.wen_rong .content-box .conthtmn p b i').each(function () {
$('.wen_rong .content-box .conthtmn .Ptitle b i').each(function () {
this.style.setProperty('font-style', 'normal', 'important');
});
$('.wen_rong .content-box .conthtmn .Ptitle i b').each(function () {
this.style.setProperty('font-style', 'normal', 'important');
});

View File

@@ -4,8 +4,21 @@ function initFooter() {
console.log(11)
$('.footer .daohang').css({
'border-bottom':'none',
'border-bottom': 'none',
})
const $daohang = $('.footer .daohang');
// 判断是否存在 .dh_du
if ($daohang.find('.dh_du').length > 0) {
$('.footer .daohang .dh_du').after('<div class="daohang_bottom_line"></div>')
// 把 .daohang_bottom_line 移到 .daohang 外部
$daohang.find('.daohang_bottom_line').insertAfter($daohang);
$('.footer .bianma').css({
'margin-top': '30px',
})
}
$('.daohang_bottom_line').css({
'background': 'red',
'height': '6px',
@@ -13,14 +26,15 @@ function initFooter() {
'border-bottom': '0.5px solid #fff',
'width': '1300px',
'margin': '0 auto',
'max-width': '100%',
})
$('.footer-bottom-email').css({
'display': 'flex',
'display': 'flex',
'align-items': 'center',
'justify-content': 'center',
})
$('.footer-bottom-email-line').css({
'font-weight': '700',
'font-weight': '700',
/* width: 3px; */
/* display: inline-block; */
'border': '2px solid #fff',
@@ -33,5 +47,36 @@ function initFooter() {
}
//临时改的 合刊在删
function initForAuthor() {
var arr_jour = { system_color: localStorage.Journals_color }
if (Jour_num == 1) {
arr_jour.apc = '$ 600'
} else {
arr_jour.apc = '$ 0'
}
console.log('initForAuthor');
var apcStr = ``;
if ([1, 25, 11].includes(Jour_num)) {
apcStr = arr_jour.apc
} else {
apcStr = arr_jour.apc + `<span style="color: ${arr_jour.system_color};font-weight: bold;margin-left:6px;">( 2025 - 2026 )</span>`;
}
$('.for_mess div .fr_APC').html(apcStr);
}
const pathname = window.location.pathname.split("/").pop();
// 2. 判断是否为 for_author.html
if (pathname === "for_author.html") {
console.log("当前是 for_author.html 页面");
// 3. 获取 J_num 参数值
const urlParams = new URLSearchParams(window.location.search);
const J_num = urlParams.get("J_num");
initForAuthor(J_num)
}
initFooter()

11
js/forAuthor.js Normal file
View File

@@ -0,0 +1,11 @@
function initForAuthor() {
console.log('initForAuthor');
var apcStr = ``;
if ([1, 25, 11].includes(Jour_num)) {
apcStr = arr_jour.apc
} else {
apcStr = arr_jour.apc + `<span style="color: ${arr_jour.system_color};font-weight: bold;margin-left:6px;">( 2025 - 2026 )</span>`;
}
$('.for_mess div .fr_APC').html(apcStr);
}

View File

@@ -331,7 +331,7 @@ function bf_list() {
if (Jour_num == 2 || Jour_num == 17 | Jour_num == 18) {
$('.current_list>h4').html('Current Volume<span>' + time_ + '</span>');
} else if (Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9 || Jour_num == 21 || Jour_num == 22|| Jour_num == 19) { // 合并期刊
} else if (Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9 || Jour_num == 21 || Jour_num == 22|| Jour_num == 19 ||Jour_num == 12) { // 合并期刊
$('.current_list>h4').html('Latest Issue<span>' + time_ + '</span>');
} else {
$('.current_list>h4').html('Current Issue<span>' + time_ + '</span>');
@@ -1054,7 +1054,7 @@ function bf_list() {
var str = "";
for (var i = 0; i < result.data.journalStage.length; i++) {
// 暂时条件中添加一个3 15 10
if (Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9 || Jour_num == 21 || Jour_num == 22 || Jour_num == 3 || Jour_num == 15 || Jour_num == 10|| Jour_num == 16|| Jour_num == 24|| Jour_num == 19) {
if (Jour_num == 7 || Jour_num == 6 || Jour_num == 20 || Jour_num == 9 || Jour_num == 21 || Jour_num == 22 || Jour_num == 3 || Jour_num == 15 || Jour_num == 10|| Jour_num == 16|| Jour_num == 24|| Jour_num == 19||Jour_num == 12) {
// 合并(替换)期刊
if (i == 0) { str += '<b>' + arr_stage[i].stage_year + '</b><br>' }

View File

@@ -725,13 +725,22 @@ function side_list() {
}
$('.jour_guest>a').attr('href', 'gue_edit.html?J_num=' + Jour_num);
$('.jour_guest h4 a').attr('href', 'guest.html?J_num=' + Jour_num);
$('.press-button .Gue_special').attr('href', 'gue_edit.html?J_num=' + Jour_num);
if (str == '') {
$('.gue_is_lis').css('display', 'none');
}
if (!result.data.is_show) {
$('.jour_guest h4 a').css('display', 'none');
}
} console.log('result.data.is_show at line 535:', result)
//11 mdm
if (result.data.is_show == "false" || Jour_num == '11') {
// $('.jour_guest h4 a').css('display', 'none');
$('.press-button .Gue_special').each(function () {
this.style.setProperty('display', 'none', 'important');
});
}
// if(Jour_num!='1'){
// $('.jour_guest').css('display','none');
// $('.jour_sta_tp_left_border').css('display','none');

File diff suppressed because it is too large Load Diff