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

@@ -257,6 +257,48 @@
</p>
</el-collapse-item>
</el-collapse>
<el-collapse class="auth_colla research_area" style="margin-top: -15px" v-model="AIcontent" v-if="artextForm.is_use_ai&&artextForm.is_use_ai==1">
<el-collapse-item title="Artificial intelligence was utilized in the research or manuscript of the article" name="1">
<div style="margin: 12px 20px 30px 0px; line-height: 24px; font-size: 14px; position: relative">
<div>
<!-- 统计数据 -->
<div class="join_link">
<!-- 如果你想投稿 请点击 -->
{{ artextForm.use_ai_explain }}
<!-- 查看已投稿件列表 -->
</div>
</div>
</div>
</el-collapse-item>
</el-collapse>
<el-collapse class="auth_colla research_area" style="margin-top: -15px" v-model="researchAreas" v-if="majorValueList.length>0">
<el-collapse-item title="Research areas" name="1">
<div style="margin: 12px 20px 30px 0px; line-height: 24px; font-size: 14px; position: relative">
<div>
<!-- 统计数据 -->
<div class="join_link">
<!-- 如果你想投稿 请点击 -->
<p style="" v-for="(v, i) in majorValueList">
<span style="color: #006699; font-weight: bold; margin-right: 10px"
>Field {{ i + 1 }}:</span
>{{ v.major_title.replace('Medicine >', '').trim()
}}
</p>
<!-- 查看已投稿件列表 -->
</div>
</div>
</div>
</el-collapse-item>
</el-collapse>
</div>
<div class="art_file" style="margin-top: 0;border-top-color:#fff;padding-top: 0;">
<h4 v-if="coverLetterFileList">Cover letter : </h4>
@@ -406,6 +448,10 @@
export default {
data() {
return {
researchAreas:['1'],
AIcontent:['1'],
AIcontentStr:"",
majorValueList:[],
baseUrl: this.Common.baseUrl,
mediaUrl: this.Common.mediaUrl,
items: '',
@@ -562,6 +608,16 @@ this.$router.push({
}
});
},
getMajorData(data) {
this.$api
.post('api/Article/getArticleField', {
article_id: data
})
.then((res) => {
this.majorValueList = res.data
console.log(res, '已经保存的值');
})
},
// 点击稿件内容文件
esy_deta(e) {
this.$api
@@ -603,6 +659,7 @@ this.$router.push({
.catch(err => {
console.log(err);
});
this.getMajorData(e)
this.$api
.post('api/Article/getFilelistByArticleID', {
articleId: e
@@ -1047,4 +1104,10 @@ this.$router.push({
font-weight: bold;
letter-spacing: -0.5px;
}
/deep/.research_area .el-collapse-item__arrow{
left: 25px;
}
/deep/.research_area .el-collapse-item__content{
padding-bottom: 0 !important;
}
</style>