This commit is contained in:
2025-07-28 15:27:05 +08:00
parent 10426bb23e
commit 38be3888a2
5 changed files with 197 additions and 22 deletions

View File

@@ -163,7 +163,21 @@
</p>
</el-collapse-item>
</el-collapse>
<el-collapse v-model="researchAreas" class="auth_colla auth_collna_ew" style="margin-top: -15px">
<el-collapse v-model="AIcontent" class="auth_colla auth_collna_ew" style="margin-top: -15px" v-if="form.is_use_ai==1">
<el-collapse-item title="Artificial intelligence was utilized in the research or manuscript of the article" name="1">
{{ form.use_ai_explain }}
</el-collapse-item>
</el-collapse>
<el-collapse class="auth_colla auth_collna_ew" style="margin-top: -15px" v-if="form.is_use_ai==2">
<el-collapse-item title="No artificial intelligence was utilized in the research or manuscript writing process of this article" name="1">
</el-collapse-item>
</el-collapse>
<el-collapse v-model="researchAreas" class="auth_colla auth_collna_ew research_area" style="margin-top: -15px">
<el-collapse-item title="Research areas" name="1">
<div style="position: relative; height: 30px">
<common-major
@@ -683,7 +697,8 @@ export default {
isShowAI: false,
currentArticleData: {},
researchAreas: ['1'],
AIcontent: '',
AIcontent: ['1'],
// AIcontent: '',
previewData: {},
baseUrl: this.Common.baseUrl,
mediaUrl: this.Common.mediaUrl,
@@ -1292,6 +1307,8 @@ export default {
this.remark.content = res.article.remarks;
this.form.state = res.article.state;
this.form.ctime = res.article.ctime;
this.form.is_use_ai = res.article.is_use_ai;
this.form.use_ai_explain = res.article.use_ai_explain;
this.form.transList = res.transfer;
this.msgs = res.msg;
var alist = res.authors;
@@ -1767,4 +1784,7 @@ export default {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 30px;
}
/deep/.research_area .el-collapse-item__content{
padding-bottom: 0 !important;
}
</style>