1
This commit is contained in:
@@ -192,6 +192,15 @@
|
||||
</div>
|
||||
|
||||
<div class="art_caozuo_">
|
||||
<div class="art_state_upagain">
|
||||
TMR Publishing Group journals follow a double blind peer review process to ensure impartial editorial
|
||||
decision-making. The author should not include identifying information the main manuscript as this must remain
|
||||
blinded. However, there are still some authors who expose information to reviewers. Here we ask the editor to
|
||||
identify such a manuscript, separate the two parts and re-upload them. If you need to do so, please
|
||||
<span @click="againVisble=true"> click here</span>.
|
||||
If you need not, please ignore this step.
|
||||
|
||||
</div>
|
||||
<div class="art_state_repet">
|
||||
<h3>Repetition rate check</h3>
|
||||
<p>
|
||||
@@ -227,6 +236,19 @@
|
||||
|
||||
</div>
|
||||
|
||||
<el-dialog title="Upload file" :visible.sync="againVisble" width="500px">
|
||||
<el-upload class="upload-demo" :action="upload_again" accept=".doc, .docx, .rar, .zip" name="manuscirpt"
|
||||
:before-upload="beforeupload_again" :on-error="uperr_again" :on-success="upSuccess_again" :limit="1" :on-exceed="alertlimit_again"
|
||||
:on-remove="removefilemanuscirpt" ref="again_upload">
|
||||
<div class="el-upload__text" style="padding:8px 5px;">
|
||||
<em>Click Upload</em>
|
||||
</div>
|
||||
<div class="el-upload__tip" slot="tip">Only word and compressed files can be uploaded(.doc,.docx,.rar,.zip)</div>
|
||||
</el-upload>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="saveAgain">Save</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
<el-dialog title="Remarks" :visible.sync="editbox" width="500px">
|
||||
<el-form ref="remark" :model="remark" label-width="80px">
|
||||
<el-form-item label="Content :">
|
||||
@@ -491,6 +513,7 @@
|
||||
dialogFormVisible: false,
|
||||
Detailvisible: false,
|
||||
repebox: false,
|
||||
againVisble: false,
|
||||
questionform: {},
|
||||
coverLetterFileList: [],
|
||||
picturesAndTablesFileList: [],
|
||||
@@ -655,6 +678,9 @@
|
||||
upload_zip: function() {
|
||||
return this.baseUrl + 'api/Article/up_file/type/repezip';
|
||||
},
|
||||
upload_again: function() {
|
||||
return this.baseUrl + 'api/Article/up_file/type/manuscirpt';
|
||||
},
|
||||
journal_me: function() {
|
||||
var frag = this.form.journalname;
|
||||
if (this.form.special_num > 0) {
|
||||
@@ -693,6 +719,16 @@
|
||||
methods: {
|
||||
//弹出编辑框
|
||||
testvis(e) {
|
||||
if (e == 6) {
|
||||
if (this.form.type == "N" || this.form.type == "T" || this.form.type == "LTE" || (this.review_Data != undefined &&
|
||||
this.review_Data.length >=
|
||||
2)) {
|
||||
|
||||
} else {
|
||||
this.$message.error('This manuscript must be reviewed by more than two reviewers!');
|
||||
return false
|
||||
}
|
||||
}
|
||||
this.editform.state = e
|
||||
this.editform.state_name = this.statetostr(e)
|
||||
this.$confirm('Are you sure about this process ' + this.editform.state_name + ' ?', 'Tips', {
|
||||
@@ -717,13 +753,7 @@
|
||||
} else if (e == 5) {
|
||||
stat_num = 'articleDetailEditor_f'
|
||||
} else if (e == 6) {
|
||||
if (this.form.type == "N" || this.form.type == "T" || (this.review_Data != undefined && this.review_Data.length >=
|
||||
2)) {
|
||||
stat_num = 'articleDetailEditor_g'
|
||||
} else {
|
||||
this.$message.error('如果不是mewscommment类型的稿件,必须要两位以上的审稿人');
|
||||
return false
|
||||
}
|
||||
stat_num = 'articleDetailEditor_g'
|
||||
}
|
||||
this.$router.push({
|
||||
path: stat_num,
|
||||
@@ -965,6 +995,25 @@
|
||||
return frag;
|
||||
},
|
||||
|
||||
// 上传文件
|
||||
saveAgain() {
|
||||
if (this.form.manuscirpt == '') {
|
||||
this.$message.error('Manuscirpt is required');
|
||||
return false;
|
||||
}
|
||||
this.loading = true;
|
||||
this.$api.post('api/Article/changeArticleFileEditor', this.form)
|
||||
.then(res => {
|
||||
this.loading = false;
|
||||
this.$message.success('success');
|
||||
this.againVisble = false
|
||||
this.initFileList()
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
});
|
||||
},
|
||||
|
||||
|
||||
|
||||
// 打分问卷
|
||||
@@ -1039,20 +1088,37 @@
|
||||
});
|
||||
},
|
||||
|
||||
//检验上传文件的格式
|
||||
beforeupload_again(file) {
|
||||
|
||||
},
|
||||
uperr_again(err) {
|
||||
this.$message.error('upload error');
|
||||
},
|
||||
upSuccess_again(res, file) {
|
||||
if (res.code == 0) {
|
||||
this.form.manuscirpt = 'manuscirpt/' + res.upurl;
|
||||
} else {
|
||||
this.$message.error('service error:' + res.msg);
|
||||
}
|
||||
},
|
||||
removefilemanuscirpt(file, fileList) {
|
||||
this.form.manuscirpt = '';
|
||||
},
|
||||
|
||||
upSuccess_repezip(res, file) {
|
||||
if (res.code == 0) {
|
||||
this.repeform.zipurl = 'repezip/' + res.upurl;
|
||||
}
|
||||
},
|
||||
upSuccess_repezip(res, file) {
|
||||
if (res.code == 0) {
|
||||
this.repeform.zipurl = 'repezip/' + res.upurl;
|
||||
}
|
||||
},
|
||||
|
||||
//超出传送文件个数限制
|
||||
alertlimit() {
|
||||
this.$message.error('The maximum number of uploaded files has been exceeded');
|
||||
},
|
||||
alertlimit_again() {
|
||||
this.$message.error('The maximum number of uploaded files has been exceeded');
|
||||
},
|
||||
getlinkurl(row) {
|
||||
return this.mediaUrl + row.file_url;
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user