自动化添加审稿人类型
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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) {
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user