20210625
This commit is contained in:
@@ -4,7 +4,7 @@ const en = {
|
|||||||
title: 'Submission System',
|
title: 'Submission System',
|
||||||
repassword:'Forgot your password?',
|
repassword:'Forgot your password?',
|
||||||
register:'Not registered yet? Register now.',
|
register:'Not registered yet? Register now.',
|
||||||
orcidlogin:'Login with your ORCID ID',
|
orcidlogin:'Login with your ORCID iD',
|
||||||
login:'Log in',
|
login:'Log in',
|
||||||
forgetpwd:'Find Your Password',
|
forgetpwd:'Find Your Password',
|
||||||
screen:'full screen',
|
screen:'full screen',
|
||||||
|
|||||||
@@ -85,6 +85,9 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="ORCID iD:" label-width="100px">
|
||||||
|
<el-input v-model="item.orcid" placeholder="Orcid"></el-input>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="First author:" label-width="100px">
|
<el-form-item label="First author:" label-width="100px">
|
||||||
<el-switch v-model="item.isSuper" active-text="yes" inactive-text="no"></el-switch>
|
<el-switch v-model="item.isSuper" active-text="yes" inactive-text="no"></el-switch>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -307,6 +310,7 @@ export default {
|
|||||||
{
|
{
|
||||||
firstname: '',
|
firstname: '',
|
||||||
lastname: '',
|
lastname: '',
|
||||||
|
orcid:'',
|
||||||
company: '',
|
company: '',
|
||||||
department: '',
|
department: '',
|
||||||
title: '',
|
title: '',
|
||||||
@@ -455,6 +459,7 @@ export default {
|
|||||||
this.form.authorList.push({
|
this.form.authorList.push({
|
||||||
firstname: '',
|
firstname: '',
|
||||||
lastname: '',
|
lastname: '',
|
||||||
|
orcid:'',
|
||||||
company: '',
|
company: '',
|
||||||
department: '',
|
department: '',
|
||||||
title: '',
|
title: '',
|
||||||
|
|||||||
@@ -26,10 +26,7 @@
|
|||||||
<div class="form-box" v-loading="loading">
|
<div class="form-box" v-loading="loading">
|
||||||
<el-form ref="articleform" :model="form" :rules="rules" label-width="110px">
|
<el-form ref="articleform" :model="form" :rules="rules" label-width="110px">
|
||||||
<el-form-item label="Suggest" v-show="this.form.state == 4 ? true : false">
|
<el-form-item label="Suggest" v-show="this.form.state == 4 ? true : false">
|
||||||
<el-card class="box-card"
|
<el-card class="box-card" v-for="(item, index) in suggest" :key="index">
|
||||||
v-for="(item, index) in suggest"
|
|
||||||
:key="index"
|
|
||||||
>
|
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>Reviewer Opinion{{ index + 1 }}</span>
|
<span>Reviewer Opinion{{ index + 1 }}</span>
|
||||||
<!-- <el-button style="float: right; padding: 3px 0" type="text">操作按钮</el-button> -->
|
<!-- <el-button style="float: right; padding: 3px 0" type="text">操作按钮</el-button> -->
|
||||||
@@ -90,6 +87,9 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="ORCID iD:" label-width="100px">
|
||||||
|
<el-input v-model="item.orcid" placeholder="Last name"></el-input>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="First author:" label-width="100px">
|
<el-form-item label="First author:" label-width="100px">
|
||||||
<el-switch v-model="item.isSuper" active-text="yes" inactive-text="no"></el-switch>
|
<el-switch v-model="item.isSuper" active-text="yes" inactive-text="no"></el-switch>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -473,7 +473,7 @@ export default {
|
|||||||
journal_me: function () {
|
journal_me: function () {
|
||||||
var frag = this.form.journalname;
|
var frag = this.form.journalname;
|
||||||
if (this.form.special_num > 0) {
|
if (this.form.special_num > 0) {
|
||||||
frag += "(Special Issues)";
|
frag += '(Special Issues)';
|
||||||
}
|
}
|
||||||
return frag;
|
return frag;
|
||||||
},
|
},
|
||||||
@@ -610,6 +610,7 @@ export default {
|
|||||||
art_aut_id: alist[i].art_aut_id,
|
art_aut_id: alist[i].art_aut_id,
|
||||||
firstname: alist[i].firstname,
|
firstname: alist[i].firstname,
|
||||||
lastname: alist[i].lastname,
|
lastname: alist[i].lastname,
|
||||||
|
orcid: alist[i].orcid,
|
||||||
company: alist[i].company,
|
company: alist[i].company,
|
||||||
department: alist[i].department,
|
department: alist[i].department,
|
||||||
title: alist[i].author_title,
|
title: alist[i].author_title,
|
||||||
|
|||||||
@@ -79,6 +79,9 @@
|
|||||||
<el-form-item label="Name:" label-width="100px">
|
<el-form-item label="Name:" label-width="100px">
|
||||||
{{item.firstname}} {{item.lastname}}
|
{{item.firstname}} {{item.lastname}}
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="ORCID iD:" label-width="100px">
|
||||||
|
{{item.orcid}}
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="First author:" label-width="100px">
|
<el-form-item label="First author:" label-width="100px">
|
||||||
<el-switch
|
<el-switch
|
||||||
v-model="item.isSuper"
|
v-model="item.isSuper"
|
||||||
@@ -785,6 +788,7 @@ export default {
|
|||||||
art_aut_id: alist[i].art_aut_id,
|
art_aut_id: alist[i].art_aut_id,
|
||||||
firstname: alist[i].firstname,
|
firstname: alist[i].firstname,
|
||||||
lastname: alist[i].lastname,
|
lastname: alist[i].lastname,
|
||||||
|
orcid: alist[i].orcid,
|
||||||
company: alist[i].company,
|
company: alist[i].company,
|
||||||
department: alist[i].department,
|
department: alist[i].department,
|
||||||
title: alist[i].author_title,
|
title: alist[i].author_title,
|
||||||
|
|||||||
@@ -55,6 +55,7 @@
|
|||||||
label="Name:"
|
label="Name:"
|
||||||
label-width="100px"
|
label-width="100px"
|
||||||
>{{item.firstname}} {{item.lastname}}</el-form-item>
|
>{{item.firstname}} {{item.lastname}}</el-form-item>
|
||||||
|
<el-form-item label="ORCID iD" label-width="100px">{{item.orcid}}</el-form-item>
|
||||||
<el-form-item label="First author:" label-width="100px">
|
<el-form-item label="First author:" label-width="100px">
|
||||||
<el-switch
|
<el-switch
|
||||||
v-model="item.isSuper"
|
v-model="item.isSuper"
|
||||||
@@ -535,6 +536,7 @@ export default {
|
|||||||
art_aut_id: alist[i].art_aut_id,
|
art_aut_id: alist[i].art_aut_id,
|
||||||
firstname: alist[i].firstname,
|
firstname: alist[i].firstname,
|
||||||
lastname: alist[i].lastname,
|
lastname: alist[i].lastname,
|
||||||
|
orcid: alist[i].orcid,
|
||||||
company: alist[i].company,
|
company: alist[i].company,
|
||||||
department: alist[i].department,
|
department: alist[i].department,
|
||||||
title: alist[i].author_title,
|
title: alist[i].author_title,
|
||||||
|
|||||||
Reference in New Issue
Block a user