20260304临时补救article_list
This commit is contained in:
@@ -127,6 +127,7 @@ function initArticleNavList() {
|
||||
var Journals_color = localStorage.getItem('Journals_color')
|
||||
var Journals_usx = localStorage.getItem('Journals_usx')
|
||||
$('.nav_ban h1 a').attr('href', '/' + Journals_usx);
|
||||
$('.nav_ban h1 a').attr('target', '_top');
|
||||
var journalStageID = localStorage.getItem('journalStageID')
|
||||
//是否显示地图
|
||||
var isShowAuthorship = 0;
|
||||
@@ -240,7 +241,7 @@ function openAuthorship(Jour_num, Journals_color) {
|
||||
</div>
|
||||
`
|
||||
document.querySelector('#common-popup .common-popup-content').classList.add('whitebg');
|
||||
showPopup(`<span style="font-weight:bold;color:${Journals_color}">Abstracting & Indexing</span>`, Abstractingcontent, 'Authorship')
|
||||
showPopup(`<span style="font-weight:bold;color:${Journals_color}">The Past Three Years</span>`, Abstractingcontent, 'Authorship')
|
||||
|
||||
|
||||
}
|
||||
@@ -273,11 +274,39 @@ function closePopup() {
|
||||
|
||||
}
|
||||
function initForAuthor(Jour_num, arr_jour) {
|
||||
const style = document.createElement('style');
|
||||
style.innerHTML = `.apc-link {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.apc-link:hover {
|
||||
text-decoration: underline !important;
|
||||
color: ${arr_jour.system_color};
|
||||
}`
|
||||
document.head.appendChild(style);
|
||||
|
||||
var apcUrl = ``
|
||||
var apcStr = ``;
|
||||
if ([1, 25, 11].includes(Number(Jour_num))) {
|
||||
switch (Number(Jour_num)) {
|
||||
//bmec
|
||||
case 25:
|
||||
apcUrl = `https://www.tmrjournals.com/bmec/apc`
|
||||
break;
|
||||
//mdm
|
||||
case 11:
|
||||
apcUrl = `https://www.tmrjournals.com/mdm/apc`
|
||||
break;
|
||||
|
||||
|
||||
}
|
||||
if ([1].includes(Number(Jour_num))) {
|
||||
apcStr = arr_jour.apc
|
||||
} else {
|
||||
}
|
||||
else if ([25, 11].includes(Number(Jour_num))) {
|
||||
//bmec mdm
|
||||
apcStr = `<a class="apc-link" href="${apcUrl}" target="_blank" ><span>${arr_jour.apc}</span></a>`
|
||||
}
|
||||
else {
|
||||
apcStr = arr_jour.apc + `<span style="color: ${arr_jour.system_color};font-weight: bold;margin-left:6px;">( 2025–2026 )</span>`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user