This commit is contained in:
wangjinlei
2021-02-26 10:40:26 +08:00
parent 4ee79226b4
commit d120e9cc52
5 changed files with 36 additions and 9 deletions

View File

@@ -43,7 +43,10 @@
<span>{{form.accept_sn}}</span>
</el-form-item>
<el-form-item label="Journal">
<span>{{form.journalname}}</span>
<span>{{journal_me}}</span>
</el-form-item>
<el-form-item v-if="form.special_num > 0 " label="Special Issues">
<span>{{ form.special_title }}</span>
</el-form-item>
<el-form-item label="Title">
<span>{{form.title}}</span>
@@ -633,6 +636,13 @@ export default {
upload_zip:function(){
return this.baseUrl + 'api/Article/up_file/type/repezip';
},
journal_me:function(){
var frag = this.form.journalname;
if(this.form.special_num>0){
frag += "(Special Issues)";
}
return frag;
},
articleState: function() {
let str = '';
switch (this.form.state) {
@@ -756,6 +766,8 @@ export default {
this.form.keyWords = res.article.keywords;
this.form.fund = res.article.fund;
this.form.type = res.article.type;
this.form.special_num = res.article.special_num;
this.form.special_title = res.article.special_title;
this.form.major = res.major.major==null?'':res.major.major.title;
this.form.cmajor = res.major.cmajor==null?'':res.major.cmajor.title;
this.form.approval = res.article.approval==1?true:false;