This commit is contained in:
徐哼唧L
2022-12-09 16:18:12 +08:00
parent dc4d87a990
commit 5ed3073b6e
130 changed files with 41608 additions and 2013 deletions

View File

@@ -19,7 +19,10 @@
</b>
</p>
<div class="art_caozuo_">
<p>I'm ready to change your opinion. Do you agree?</p>
<p style="line-height: 22px;">
I am writing just to follow up on the suggestion from the editor of <b>{{ artMes.journalname }}</b> that you might
be interested in submitting your paper to <b>{{ transinfo.jourtitle }}</b> instead.
</p>
<div style="text-align: center;margin-top: 30px;">
<el-button type="success" @click="saveAgr()" style="margin-right: 20px;width: 250px;">Agree</el-button>
<el-button type="danger" @click="saveRef()" style="width: 250px;">Refuse</el-button>
@@ -90,15 +93,24 @@
</div>
</el-collapse-item>
</el-collapse>
<p>
<font>Abstrart :</font><b>{{artMes.abstrart}}</b>
</p>
<p v-if="artMes.keyWords">
<font>KeyWords :</font><b>{{artMes.keyWords}}</b>
</p>
<p v-if="artMes.fund">
<font>Fund :</font><b>{{artMes.fund}}</b>
</p>
<el-collapse class="auth_colla auth_colla_new" style="margin-top: -15px;border-top: 0;">
<el-collapse-item>
<template slot="title">
Abstract
<font v-if="artMes.keywords" style="margin-left: 3px;">, Keywords</font>
<font v-if="artMes.fund" style="margin-left: 3px;">, Fund</font>
</template>
<p>
<font>Abstract :</font><b>{{artMes.abstrart}}</b>
</p>
<p v-if="artMes.keywords">
<font>Keywords :</font><b>{{artMes.keywords}}</b>
</p>
<p v-if="artMes.fund">
<font>Fund :</font><b>{{artMes.fund}}</b>
</p>
</el-collapse-item>
</el-collapse>
</div>
<div class="art_file">
@@ -126,8 +138,8 @@
</a>
</p>
<br clear="both" v-if="picturesAndTablesFileList">
<h4>Title page : </h4>
<p>
<h4 v-if="totalpageFileList">Title page : </h4>
<p v-if="totalpageFileList">
<a v-for="item in totalpageFileList" :href="mediaUrl + item.file_url">
<img src="../../assets/img/icon_0.png">
<span>
@@ -137,7 +149,7 @@
<i class="el-icon-download download"></i>
</a>
</p>
<br clear="both">
<br clear="both" v-if="totalpageFileList">
<h4>Manuscirpt : </h4>
<p>
<a v-for="item in manuscirptFileList" :href="mediaUrl + item.file_url">
@@ -171,8 +183,9 @@
activeNames: ['2'],
authorList_name: '',
artMes: {
articleId: this.$route.query.id
articleId: this.$route.query.id,
},
transinfo: {},
coverLetterFileList: [],
picturesAndTablesFileList: [],
totalpageFileList: [],
@@ -204,6 +217,7 @@
this.artMes = res.article;
this.artMes.major = res.major;
this.artMes.authorList = []
this.transinfo = res.transinfo
let alist = res.authors;
let alist_name = [];
for (let i in alist) {
@@ -250,14 +264,48 @@
});
},
// 同意转投
saveAgr(){
saveAgr() {
// 二次确认更改状态
this.$confirm('Your sure transfer your manuscript?', 'Tip', {
type: 'warning'
})
.then(() => {
this.$api
.post('api/article/trans_manu', this.transinfo)
.then((res) => {
this.$message.success('Successful switching!');
this.$router.push({
path: '/articleProcess',
query: {
id: this.articleId
}
});
});
})
.catch(() => {});
},
// 拒绝转投
saveRef(){
saveRef() {
// 二次确认更改状态
this.$confirm('Your sure refuse transfer your manuscript?', 'Tip', {
type: 'warning'
})
.then(() => {
this.$api
.post('api/Article/trans_manu_no', this.transinfo)
.then((res) => {
this.$message.success('Successful refuse switching!');
this.$router.push({
path: '/articleProcess',
query: {
id: this.articleId
}
});
});
})
.catch(() => {});
},
// 查看详情
@@ -314,6 +362,9 @@
case 'RP':
frag = 'Report';
break;
case 'LR':
frag = 'Letter';
break;
case 'EF':
frag = 'Empirical formula';
break;
@@ -335,6 +386,12 @@
case 'CS':
frag = 'Case Series';
break;
case 'RT':
frag = 'Retraction';
break;
case 'MR':
frag = 'Mini Review';
break;
default:
frag = 'Others';
}