自动化添加审稿人类型

This commit is contained in:
2026-05-19 11:28:33 +08:00
parent 00d58f8d56
commit 2a7b9a0ec2
5 changed files with 1527 additions and 239 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -490,6 +490,7 @@ export default {
if (t === '3') return this.$t('autoPromotion.factoryExpertYoungBoard');
if (t === '4') return this.$t('autoPromotion.factoryExpertAuthor');
if (t === '5') return this.$t('autoPromotion.factoryExpertDb');
if (t === '6') return this.$t('autoPromotion.factoryExpertReviewer');
return '-';
},
getStatusType(status) {

View File

@@ -447,6 +447,14 @@
icon: 'el-icon-collection',
count: counts.expertDb,
jump: { path: '/expertDatabase', queryKey: 'journal_id' }
},
{
value: '6',
label: this.$t('autoPromotion.factoryExpertReviewer'),
desc: this.$t('autoPromotion.factoryExpertReviewer'),
icon: 'el-icon-s-check',
count: counts.reviewer,
jump: { path: '/reviewerList', queryKey: 'journal_id' }
}
];
},
@@ -1584,7 +1592,7 @@
.account-grid-layout {
display: grid;
/* 如果希望固定 3 个一行repeat(3, 1fr)如果自适应repeat(auto-fill, minmax(280px, 1fr)) */
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 8px;
}