提交
This commit is contained in:
@@ -408,11 +408,11 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
"
|
"
|
||||||
>{{ v.author_account.realname }}</span
|
>{{ v.author_account&&v.author_account.realname?v.author_account.realname:'' }}</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="max-width: 260px; width: auto">
|
<div style="max-width: 260px; width: auto" v-if="v.author_account">
|
||||||
<span style="margin-left: 6px" v-if="v.author_account.wos_time">
|
<span style="margin-left: 6px" v-if="v.author_account.wos_time">
|
||||||
<span style="font-size: 12px; font-weight: bold">WOS</span> :
|
<span style="font-size: 12px; font-weight: bold">WOS</span> :
|
||||||
<span v-html="colorIndex1(v.author_account.wos_index)"></span>
|
<span v-html="colorIndex1(v.author_account.wos_index)"></span>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
"
|
"
|
||||||
>
|
>
|
||||||
Automated Scoring for Reviewer's Opinions :
|
Automated Scoring for Reviewer's Opinions :
|
||||||
<span style="font-weight: bold; font-weight: bold; font-size: 26px; color: #2c3e50; margin-left: 10px">{{
|
<span style="font-weight: bold; font-weight: bold; font-size: 26px; color: #409EFF; margin-left: 10px">{{
|
||||||
Number(questionform.score)
|
Number(questionform.score)
|
||||||
}}</span>
|
}}</span>
|
||||||
</span>
|
</span>
|
||||||
@@ -83,7 +83,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<el-radio :label="4">Reject</el-radio>
|
<el-radio :label="4" :disabled="!isEdit && questionform.recommend != 4">Reject</el-radio>
|
||||||
</div>
|
</div>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -161,13 +161,13 @@
|
|||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="Please choose disclose your name or remain anonymous" v-if="isEdit">
|
<el-form-item label="Please choose disclose your name or remain anonymous" >
|
||||||
<el-radio-group v-model="questionform.is_anonymous" style="line-height: 30px">
|
<el-radio-group v-model="questionform.is_anonymous" style="line-height: 30px" v-if="pagetype=='Editor'">
|
||||||
<el-radio :label="0" :disabled="!isEdit && questionform.is_anonymous != 0">Disclose name</el-radio>
|
<el-radio :label="0" :disabled="!isEdit && questionform.is_anonymous != 0">Disclose name</el-radio>
|
||||||
<br />
|
<br />
|
||||||
<el-radio :label="1" :disabled="!isEdit && questionform.is_anonymous != 1">Remain anonymous</el-radio>
|
<el-radio :label="1" :disabled="!isEdit && questionform.is_anonymous != 1">Remain anonymous</el-radio>
|
||||||
</el-radio-group>
|
</el-radio-group>
|
||||||
<p style="line-height: 20px; color: #aaa; font-size: 13px; margin: 12px 0 0 0">
|
<p style="line-height: 20px; color: #aaa; font-size: 13px; margin: 12px 0 0 0" v-if="isEdit">
|
||||||
If you agree to disclose your name, we will acknowledge you by name in the published PDF. However, if you prefer to
|
If you agree to disclose your name, we will acknowledge you by name in the published PDF. However, if you prefer to
|
||||||
remain anonymous, we will still express our gratitude by thanking you as an anonymous reviewer.
|
remain anonymous, we will still express our gratitude by thanking you as an anonymous reviewer.
|
||||||
<br />For example, {{ txt_mess.title }} would like to thank AAAAAAAA, BBBBBBBB, and other anonymous reviewers for their
|
<br />For example, {{ txt_mess.title }} would like to thank AAAAAAAA, BBBBBBBB, and other anonymous reviewers for their
|
||||||
|
|||||||
Reference in New Issue
Block a user