期刊协议

This commit is contained in:
2024-05-06 15:29:42 +08:00
parent ed2874252a
commit 118153b1ad
7 changed files with 740 additions and 19 deletions

View File

@@ -1,6 +1,5 @@
<template>
<div class="sidebar">
<el-menu
class="sidebar-el-menu"
:default-active="onRoutes"
@@ -353,6 +352,7 @@ export default {
index: 'Editors_Staff',
title: this.$t('sidebar.userManSys9')
},
{
index: 'partyDelete',
title: this.$t('sidebar.userManSys7')
@@ -368,6 +368,17 @@ export default {
icon: 'el-icon-chat-line-square',
index: 'TMRGPT',
title: 'TMRGPT'
},
{
icon: 'el-icon-connection',
index: '5',
title: this.$t('sidebar.journalManagement'),
subs: [
{
index: 'Journal_Agreement',
title: this.$t('sidebar.userManSys11')
}
]
}
],
//超级管理员
@@ -392,6 +403,7 @@ export default {
// }
]
},
{
icon: 'el-icon-user',
index: '2',

View File

@@ -1,19 +1,25 @@
<script>
const mediaUrl = '/public/';
const baseUrl = '/';
//记得切换
// const mediaUrl = 'http://www.tougao.com/';
// const baseUrl = 'http://www.tougao.com/';
// const IMGdoURL = 'http://www.journal.com/';
// const IMGupURL = 'http://www.journal.com/';
// const mediaUrl = 'http://testtougao.tmrjournals.com/public/';
// const baseUrl = 'http://testtougao.tmrjournals.com/public/index.php/';
export default {
baseUrl,
mediaUrl
}
//正式
const mediaUrl = '/public/';
const baseUrl = '/';
//本地(正式环境 )
// const mediaUrl = 'https://submission.tmrjournals.com/public/';
// const baseUrl = '/api';
// const mediaUrl = 'http://www.tougao.com/';
// const baseUrl = 'http://www.tougao.com/';
// const IMGdoURL = 'http://www.journal.com/';
// const IMGupURL = 'http://www.journal.com/';
// const mediaUrl = 'http://testtougao.tmrjournals.com/public/';
// const baseUrl = 'http://testtougao.tmrjournals.com/public/index.php/';
export default {
baseUrl,
mediaUrl
};
</script>

View File

@@ -70,6 +70,7 @@ const en = {
userTalSys7: 'Editorial board apply list',
userTalSys8: 'Young Scientist apply list',
userManSys: 'User Management System',
journalManagement: 'Journal Management',
userManSys1: 'Total User',
userManSys11: 'Active Users',
userManSys12: 'Inactive Users',
@@ -91,6 +92,7 @@ const en = {
userManSys7: 'Blacklist',
userManSys8: 'Academic Integrity Committee',
userManSys9: 'Editors & Staff',
userManSys11: 'Journal Agreement',
analyp: 'Manager',
analysis: 'Journal Evaluation System',
rev_ewer: 'Reviewer',
@@ -161,6 +163,8 @@ const en = {
title:'journal',
time:'time',
},protocol:{
PublishingAgreementInfo:'Please enter the publishing agreement'
}
}

View File

@@ -69,6 +69,7 @@ const zh = {
userTalSys7: '编委申请列表',
userTalSys8: '青年科学家申请列表',
userManSys: '用户管理',
journalManagement: '期刊管理',
userManSys1: '用户管理',
userManSys11: '活跃用户',
userManSys12: '非活跃用户',
@@ -90,6 +91,7 @@ const zh = {
userManSys7: '黑名单',
userManSys8: '期刊委员会',
userManSys9: '期刊编辑',
userManSys11: '期刊协议',
analyp: '管理',
analysis: '引用统计',
rev_ewer: '审稿人',
@@ -158,6 +160,8 @@ const zh = {
title:'期刊',
time:'时间',
},protocol:{
PublishingAgreementInfo:'请输入出版协议'
}
}