tijiao
This commit is contained in:
@@ -5,7 +5,12 @@
|
||||
<el-breadcrumb-item> <i class="el-icon-lx-calendar"></i> Manuscript detail </el-breadcrumb-item>
|
||||
</el-breadcrumb>
|
||||
</div>
|
||||
<div class="container_state" v-loading="loading" style="margin: 20px 0 0 0">
|
||||
<div class="container_state" v-loading="loading" style="margin: 10px 0 0 0">
|
||||
<div style="margin-bottom: 10px; margin-top: 0px;overflow: hidden;" v-if="AIcontent!=''">
|
||||
<img src="@/assets/img/ai.png" style="width: 30px; height: 30px; margin-right: 4px;float: left;margin-top: 10px;" />
|
||||
|
||||
<p class="beautiful-gradient"style="float: right;width: calc(100% - 40px);font-size: 13px;line-height: 16px;color: #1d45f2;" >{{ AIcontent }}</p>
|
||||
</div>
|
||||
<el-row :gutter="30">
|
||||
<el-col :span="16">
|
||||
<div class="art_state_">
|
||||
@@ -57,7 +62,7 @@
|
||||
<p v-if="form.special_num > 0">
|
||||
<font>Special Issues :</font><b>{{ form.special_title }}</b>
|
||||
</p>
|
||||
|
||||
|
||||
<el-collapse class="auth_colla auth_collna_ew">
|
||||
<el-collapse-item :title="authorList_name" name="1">
|
||||
<div v-for="(item, index) in form.authorList" class="auth_mess">
|
||||
@@ -108,7 +113,7 @@
|
||||
</div>
|
||||
</el-collapse-item>
|
||||
</el-collapse>
|
||||
|
||||
|
||||
<el-collapse class="auth_colla auth_collna_ew" style="margin-top: -15px">
|
||||
<el-collapse-item name="2">
|
||||
<template slot="title">
|
||||
@@ -127,20 +132,16 @@
|
||||
</p>
|
||||
</el-collapse-item>
|
||||
</el-collapse>
|
||||
<el-collapse class="auth_colla auth_collna_ew" style="margin-top: -15px;">
|
||||
<el-collapse-item title="Research areas" name="1" >
|
||||
|
||||
|
||||
|
||||
<div style="position: relative;height: 30px;">
|
||||
<common-major
|
||||
:articleId="editform.articleId"
|
||||
@load="initMajor()"
|
||||
style="position: absolute; top: 10px; right: 10px"
|
||||
></common-major>
|
||||
|
||||
<el-collapse class="auth_colla auth_collna_ew" style="margin-top: -15px">
|
||||
<el-collapse-item title="Research areas" name="1">
|
||||
<div style="position: relative; height: 30px">
|
||||
<common-major
|
||||
:articleId="editform.articleId"
|
||||
@load="initMajor()"
|
||||
style="position: absolute; top: 10px; right: 10px"
|
||||
></common-major>
|
||||
</div>
|
||||
|
||||
|
||||
<div style="margin: 12px 20px 30px 0px; line-height: 24px; font-size: 14px; position: relative">
|
||||
<div>
|
||||
<!-- 统计数据 -->
|
||||
@@ -164,7 +165,7 @@
|
||||
</el-collapse-item>
|
||||
</el-collapse>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="art_file_">
|
||||
<el-row :gutter="24">
|
||||
<el-col :span="12" v-if="coverLetterFileList">
|
||||
@@ -552,6 +553,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
AIcontent:'',
|
||||
previewData: {},
|
||||
baseUrl: this.Common.baseUrl,
|
||||
mediaUrl: this.Common.mediaUrl,
|
||||
@@ -672,6 +674,7 @@ export default {
|
||||
};
|
||||
},
|
||||
created: function () {
|
||||
this.getAi();
|
||||
this.initarticle();
|
||||
|
||||
this.initFileList();
|
||||
@@ -807,6 +810,18 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async getAi(){
|
||||
var that = this;
|
||||
await this.$api
|
||||
.post('api/Aireview/get', {
|
||||
article_id: this.$route.query.id
|
||||
})
|
||||
.then(async (res) => {
|
||||
console.log('res at line 819:', res)
|
||||
this.AIcontent = res.data.content?res.data.content:'';
|
||||
|
||||
});
|
||||
},
|
||||
async getWordimgList() {
|
||||
var that = this;
|
||||
await this.$api
|
||||
@@ -1473,4 +1488,21 @@ export default {
|
||||
::v-deep .el-drawer__wrapper .WACContainer {
|
||||
z-index: 10000 !important;
|
||||
}
|
||||
|
||||
.beautiful-gradient {
|
||||
background: linear-gradient(135deg, #f0f9fe, #dce6ff, #d7e9fd);
|
||||
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.01);
|
||||
border-radius: 16px;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
color: #333;
|
||||
font-family: "Segoe UI", sans-serif;
|
||||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.beautiful-gradient:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user