终审提交

This commit is contained in:
2025-09-01 14:22:16 +08:00
parent 4c30099d77
commit abb4b10b6b
9 changed files with 215 additions and 163 deletions

View File

@@ -70,14 +70,14 @@
size="mini"
@click="saveNow(scope.$index, scope.row)"
v-if="scope.row.state == 5"
>Final Decision Now
>Accept for final decision
</el-button>
<el-button
type="danger"
size="mini"
@click="saveRef(scope.$index, scope.row)"
v-if="scope.row.state == 5"
>Reject
>Decline final review
</el-button>
</template>
</el-table-column>
@@ -263,6 +263,9 @@ this.getDate(data.id)
})
.then((res) => {
loading.close();
if(res.status==1){
this.detailDate.artrevid = res.art_rev_id;
this.detailDate.article = res.data.article.title;
this.detailDate.reviewer = res.data.article_final.realname;
@@ -283,8 +286,12 @@ this.getDate(data.id)
});
this.$forceUpdate();
}else{
this.$message.error(res.msg);
}
})
.catch((err) => {
this.$message.error(err);
console.log(err);
});
},