This commit is contained in:
@fawn-nine
2023-07-31 17:50:47 +08:00
parent 98fe7a96b9
commit 28681bdc57
3 changed files with 100 additions and 22 deletions

View File

@@ -59,9 +59,7 @@
<!-- <img src="../../assets/img/icon_5.png" alt="" class="icon_img"> -->
Second review
</h2>
In this column, the manuscripts that currently need your comments are displayed. You can click
detail to review
or change your comments.
Please click on the Re-review button for a second review.
</div>
<ul class="ta1_uli ta1_ulicad">
@@ -72,7 +70,7 @@
<el-button type="success" plain >Re-review</el-button>
</router-link>
</div>
<router-link :to="{path:'/per_text',query:{Art_id:item.art_rev_id}}">
<router-link :to="{path:'/Re_review',query:{Art_id:item.art_rev_id}}">
<h3><span
style="margin-right: 6px;color: #006699;">{{index+1}}.</span>{{item.article_title}}
</h3>
@@ -82,10 +80,10 @@
<font style="color: #006699;">Journal : </font>{{item.journal_title}}.
</span>
<span>
<font style="color: #006699;">Type : </font>{{item.type}}
<font style="color: #006699;">Type : </font>{{item.type | Actype}}
</span>
<span style="color: #888;margin-left: 20px;color: #006699;">
{{item.ctime}}
{{item.ctime | formatDatehms}}
</span><br>
<!-- <span v-if="item.abstrart!=''" style="max-width: 1000px;">
<font style="color: #888;">Abstrart : </font>{{item.abstrart | ellipsis}}
@@ -218,6 +216,7 @@
user_id: localStorage.getItem('U_id'),
},
TaBle3: {
user_id: localStorage.getItem('U_id'),
journal_id: 0,
@@ -228,7 +227,7 @@
};
},
mounted() {
},
created() {
this.getData();
@@ -318,8 +317,7 @@
.catch(err => {
this.$message.error(err);
});
},
},
// 分页导航
handlePageChange3(val) {
this.$set(this.TaBle3, 'pageIndex', val);
@@ -444,7 +442,79 @@
return value.slice(0, value.lastIndexOf(" ")) + "...";
}
return value;
}
},
// 文章类型
Actype(value) {
let frag = '';
switch (value) {
case "A":
frag = 'Article';
break;
case 'B':
frag = 'Review';
break;
case 'C':
frag = 'Case report';
break;
case 'P':
frag = 'Research proposal';
break;
case 'N':
frag = 'News';
break;
case 'T':
frag = 'Comment';
break;
case 'CT':
frag = 'Correction';
break;
case 'HT':
frag = 'Hypothesis';
break;
case 'PF':
frag = 'Preface';
break;
case 'ET':
frag = 'Editorial';
break;
case 'RP':
frag = 'Report';
break;
case 'LR':
frag = 'Letter';
break;
case 'EF':
frag = 'Empirical formula';
break;
case 'EM':
frag = 'Evidence-based medicine';
break;
case 'EC':
frag = 'Expert consensus';
break;
case 'LTE':
frag = 'Letter to editor';
break;
case 'QI':
frag = 'Questionnaire investigation';
break;
case 'PT':
frag = 'Protocol';
break;
case 'CS':
frag = 'Case Series';
break;
case 'RT':
frag = 'Retraction';
break;
case 'MR':
frag = 'Mini Review';
break;
default:
frag = 'Others';
}
return frag;
},
},
watch: {