20260304临时补救article_list
This commit is contained in:
@@ -1,17 +1,24 @@
|
||||
function commonHomePage() {
|
||||
const style = document.createElement('style');
|
||||
style.innerHTML = `
|
||||
|
||||
#index_top{
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
.exten_sion{
|
||||
background-color: #e7f4ff5c !important;
|
||||
width: 100% !important;
|
||||
margin: 0 !important;
|
||||
padding-bottom:40px !important;
|
||||
padding-top:40px !important;
|
||||
}
|
||||
.apc-link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.apc-link:hover {
|
||||
text-decoration: underline !important;
|
||||
color: #006699 ;
|
||||
}
|
||||
#index_top{
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
.exten_sion{
|
||||
background-color: #e7f4ff5c !important;
|
||||
width: 100% !important;
|
||||
margin: 0 !important;
|
||||
padding-bottom:40px !important;
|
||||
padding-top:40px !important;
|
||||
}
|
||||
.es_jour{
|
||||
width: 1300px !important;
|
||||
margin-left: 0 !important;
|
||||
@@ -154,27 +161,22 @@ function commonHomePage() {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
`
|
||||
document.head.appendChild(style);
|
||||
// var SubmissionStr = ` <a target="_blank" href="https://submission.tmrjournals.com/" style="">
|
||||
// <li class="rgb_color"><i class="fa fa-upload" style="font-size: 16px;font-weight: bold;color:#FFF"></i>
|
||||
// Submission System</li>
|
||||
// </a>`
|
||||
// $('#index_top .nav .clear').prepend(SubmissionStr);
|
||||
$.ajax({
|
||||
type: 'get', url: apiUrl + 'api/Journal/getJournalList',
|
||||
data: {},
|
||||
success: function (result) {
|
||||
if (result.code == 0) {
|
||||
|
||||
var arr = result.data.journalList;
|
||||
var str = "";
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
var apcStr = ``;
|
||||
var apcUrl = ``
|
||||
if ([1, 25, 11, 17].includes(Number(arr[i].journal_id))) {
|
||||
apcStr = arr[i].apc
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
apcStr = arr[i].apc + `<span style="color:#006699;font-weight: bold;margin-left:6px">( 2025–2026 )</span>`;
|
||||
}
|
||||
// 获取当前期刊独有的journalAbs数据(假设通过journal_id关联)
|
||||
@@ -187,16 +189,18 @@ function commonHomePage() {
|
||||
case 1:
|
||||
ImpactFactor = '1.3'
|
||||
Published = '2016'
|
||||
CiteScore = '2.2'
|
||||
CiteScore = '2.5'
|
||||
break;
|
||||
//bmec
|
||||
case 25:
|
||||
Published = '2022'
|
||||
CiteScore = '1.7'
|
||||
CiteScore = '1.8'
|
||||
apcUrl = `https://www.tmrjournals.com/bmec/apc`
|
||||
break;
|
||||
//mdm
|
||||
case 11:
|
||||
CiteScore = '0.4'
|
||||
apcUrl = `https://www.tmrjournals.com/mdm/apc`
|
||||
break;
|
||||
case 2:
|
||||
|
||||
@@ -216,7 +220,7 @@ function commonHomePage() {
|
||||
break;
|
||||
|
||||
case 14:
|
||||
CiteScore = '0.7'
|
||||
CiteScore = '0.8'
|
||||
Published = '2018'
|
||||
break;
|
||||
case 11:
|
||||
@@ -253,7 +257,11 @@ function commonHomePage() {
|
||||
<p style="margin-top: 4px;font-size: 11px;"> <b>Final Decision: </b>${arr[i].finaldecision}</p>
|
||||
<p style="${CiteScore ? '' : 'display:none'};margin-top: 4px;font-size: 11px;"><b>CiteScore: </b> <span style="color: #006699">${CiteScore}</span></p>
|
||||
<p style="${ImpactFactor ? '' : 'display:none'};margin-top: 4px;font-size: 11px;"><b>Impact Factor: </b> <span style="color: #006699">${ImpactFactor}</span></p>
|
||||
<p style="${apcStr ? '' : 'display:none'};margin-top: 4px;font-size: 11px;"><b>APC: </b> <span class="mes_APC">${apcStr}</span></p>
|
||||
<p style="${apcStr ? '' : 'display:none'};margin-top: 4px;font-size: 11px;"><b>APC: </b> <span class="mes_APC">
|
||||
${arr[i].journal_id == 25 || arr[i].journal_id == 11 ?
|
||||
`<a href="${apcUrl}" target="_blank" class="apc-link" ><span>${apcStr}</span></a>` : apcStr
|
||||
}
|
||||
</span></p>
|
||||
<p style="${arr_Abc && arr_Abc.length > 0 ? '' : ''}margin-top: 4px;font-size: 11px;"><b class="wl_click" style="cursor: pointer;">Indexing</b> </p>
|
||||
|
||||
</div>
|
||||
@@ -279,11 +287,11 @@ function commonHomePage() {
|
||||
// 使用当前期刊独有的journalAbs数据
|
||||
var Abstractingcontent = `<ul style="margin-top:10px;">
|
||||
${journalAbc.map((item, i) => {
|
||||
return `<li style="font-weight:700;font-size:14px;">
|
||||
return `<li style="font-weight:700;font-size:14px;">
|
||||
<span style="display:inline-block">» </span>
|
||||
<a target="_blank" href="${item.url}" style="font-weight:700;display:inline-block">${item.title}</a>
|
||||
</li>`;
|
||||
}).join('')}
|
||||
}).join('')}
|
||||
</ul>`;
|
||||
document.querySelector('#common-popup .common-popup-content').classList.add('whitebg');
|
||||
showPopup(`<span style="font-weight:bold;color:${journalColor}">Indexing</span>`, Abstractingcontent);
|
||||
|
||||
Reference in New Issue
Block a user