期刊引用+分类管理(集团分类+期刊)

This commit is contained in:
2024-09-26 13:52:24 +08:00
parent f679d3e7cb
commit b306198109
14 changed files with 3009 additions and 43 deletions

View File

@@ -462,6 +462,11 @@ export default {
index: '5',
title: this.$t('sidebar.journalManagement'),
subs: [
{
index: 'JournalManagement',
title: this.$t('sidebar.journalManagement')
},
{
index: 'Journal_Agreement',
title: this.$t('sidebar.userManSys11')
@@ -626,6 +631,7 @@ export default {
}
},
created() {
localStorage.setItem('collapse', this.collapse);
if (this.userrole == 2) {
//其余的身份(显示作者)
// if (this.user_cap.includes('chief')) { //主编
@@ -652,12 +658,27 @@ export default {
this.items.splice(
3,
0,
{
icon: 'el-icon-s-platform',
index: '13',
title: this.$t('sidebar.chiefInspector'),
subs: [
{
index: 'Classificationmanagement',
title: this.$t('menu.Classificationmanagement'),
subs: [
{
index: 'JournalManagementAll',
title: this.$t('sidebar.journalManagement')
},
{
index: 'GroupClassification',
title: this.$t('sidebar.GroupClassification')
}
]
},
{
index: 'Academicresourcesupervise',
title: this.$t('menu.Academicresourcesupervise'),
@@ -700,8 +721,9 @@ export default {
}
);
this.items=[...this.items,{
this.items = [
...this.items,
{
icon: 'el-icon-s-operation',
index: '12',
title: this.$t('sidebar.managingDirector'),
@@ -711,12 +733,14 @@ export default {
title: this.$t('sidebar.chief1')
}
]
},]
}
];
}
// 通过 Event Bus 进行组件间通信,来折叠侧边栏
bus.$on('collapse', (msg) => {
this.collapse = msg;
localStorage.setItem('collapse', this.collapse);
bus.$emit('collapse-content', msg);
});
},