This commit is contained in:
2025-09-01 13:05:33 +08:00
parent d71f54f1f7
commit 4c30099d77
14 changed files with 510 additions and 136 deletions

View File

@@ -2,7 +2,7 @@
<div>
<div class="crumbs">
<el-breadcrumb separator="/">
<el-breadcrumb-item> <i class="el-icon-lx-calendar"></i> Manuscript final reviewer list </el-breadcrumb-item>
<el-breadcrumb-item> <i class="el-icon-lx-calendar"></i> Manuscript Final Decision list </el-breadcrumb-item>
<el-breadcrumb-item>
<div>
<span>ID:{{ articleBaseInfo.accept_sn }} </span>
@@ -131,7 +131,7 @@
custom-class="editorialBoardDialog"
>
<el-select
v-model="editorialBoardForm.type"
v-model="editorialBoardForm.board_type"
placeholder=""
@change="selectEditorialBoardType"
style="margin-bottom: 20px; width: 200px"
@@ -276,7 +276,7 @@ export default {
editorialBoardForm: {
page: 1,
size: 10,
type: 0
board_type: 0
},
majorData: [],
baseUrl: this.Common.baseUrl,
@@ -363,6 +363,7 @@ export default {
methods: {
selectEditorialBoardType(type) {
console.log('type at line 525:', type);
this.editorialBoardForm.board_type = type;
this.editorialBoardForm.page = 1;
this.$forceUpdate();
this.getEditorialBoardType();
@@ -507,6 +508,7 @@ export default {
},
getEditorialBoardType() {
const loading = this.$loading({
lock: true,
text: 'Loading',
@@ -532,6 +534,11 @@ export default {
},
// 添加推荐审稿人
async openSuggRev() {
this. editorialBoardForm= {
page: 1,
size: 10,
board_type: 0
}
await this.getEditorialBoardType();
},
selSuggest(e) {