This commit is contained in:
2025-08-29 15:05:26 +08:00
parent daba55e418
commit d71f54f1f7
24 changed files with 2939 additions and 1581 deletions

View File

@@ -5,9 +5,9 @@
<el-breadcrumb-item>
<i class="el-icon-collection"></i>
<router-link :to="{ path: '/peerewer' }">
<span class="top_dao"> Final Decision Article</span>
<span class="top_dao"> Final Review Article</span>
</router-link>
>> Final Decision completed
>> Final Review Completed
</el-breadcrumb-item>
</el-breadcrumb>
</div>
@@ -45,17 +45,18 @@
p-id="29681"
></path>
</svg>
<p>Final Decision completed !</p>
<p>Final Review completed !</p>
<br clear="both" />
</div>
<!-- 暂时去掉 -->
<div class="suss_page_2">
Dear Editor-in-Chief, We have received all of your review comments.<br />
Dear {{ getUserName() }}, We have received all of your review comments.<br />
The editorial team would like to express our sincere respect and gratitude to you for your meticulous review and
guidance as the final reviewer of this journal.
</div>
<div class="suss_page_3">
<a href="/editpeerewer">Return to Peer Review page</a>
<a href="/editPeerewer">Return to Final Review page</a>
</div>
</el-card>
</div>
@@ -65,10 +66,27 @@
<script>
export default {
data() {
return {};
return {
user_cap: localStorage.getItem('U_role')
};
},
created() {},
methods: {}
methods: {
getUserName() {
// <span v-if="scope.row.reviewer_type == 0" style="color: #409eff">Editor-in-Chief</span>
// <span v-if="scope.row.reviewer_type == 1" style="color: #409eff">Vice Editor-in-Chief</span>
// if (this.user_cap.includes(',board') || this.user_cap.includes('board_editor')) {
// return 'Editorial Board Member';
// } else if (this.user_cap.includes('chief') || this.user_cap.includes('chief_editor')) {
// return 'Editor-in-Chief';
// } else if (this.user_cap.includes('deputy_editor')) {
// return 'Vice Editor-in-Chief';
// }
return localStorage.getItem('U_relname');
}
}
};
</script>