15:39
This commit is contained in:
@@ -13,16 +13,21 @@
|
||||
</el-row>
|
||||
<!-- 内容 -->
|
||||
<el-row :gutter="20" class="content_box mt20">
|
||||
<el-col>
|
||||
<!-- 文章引用 -->
|
||||
<div class="scroll-item">
|
||||
<!-- 文章引用 -->
|
||||
<el-col class="item borderBottom passStatus">
|
||||
<div class="" style="margin: 20px 0;">
|
||||
<h4>Add Reference</h4>
|
||||
<h4>Add Reference <span class="el-icon-check pass status"> Pass</span></h4>
|
||||
<p class="mt20">Please proofread against the reference documents identified by the system, you can modify the content of existing documents, you can modify the ordering of adjacent items, and you can add your reference entries.</p>
|
||||
<p class="mt10"><img src="../../assets/img/icon_9.png" alt="" class="icon_img"> <el-link @click="goAddReferences(thisArtcleId)" type="primary" > Click here to edit</el-link> </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</el-col>
|
||||
<el-col class="item notPassStatus">
|
||||
<div class="" style="margin: 20px 0;">
|
||||
<h4>Add Reference <span class="el-icon-pie-chart notPass status"> Some information needs to be improved</span> </h4>
|
||||
<p class="mt20">Please proofread against the reference documents identified by the system, you can modify the content of existing documents, you can modify the ordering of adjacent items, and you can add your reference entries.</p>
|
||||
<p class="mt10"><img src="../../assets/img/icon_9.png" alt="" class="icon_img"> <el-link @click="goAddReferences(thisArtcleId)" type="primary" > Click here to edit</el-link> </p>
|
||||
</div>
|
||||
|
||||
</el-col>
|
||||
</el-row>
|
||||
<!-- 答疑 -->
|
||||
@@ -68,10 +73,17 @@
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.borderBottom{ border-bottom:1px solid #f1f1f1; margin-bottom: 20px; }
|
||||
.help{font-size: 22px; margin-right: 10px;}
|
||||
.el-alert__title{font-size: 26px;}
|
||||
.mt20{margin-top: 20px;}
|
||||
.content_box{padding:15px 10px; border:3px dashed #eff6ff; }
|
||||
.content_box{padding:15px 10px; border:3px dashed #eff6ff; }
|
||||
.content_box .item{position: relative; padding-left: 20px !important;}
|
||||
.passStatus{ border-left:solid 5px #67C23A;}
|
||||
.notPassStatus{border-left:solid 5px #e6a23c;}
|
||||
.content_box .item .status{ padding: 5px ; border-radius: 5px; font-size: 12px;}
|
||||
.content_box .item .status.pass{background: #f0f9eb; color: #67C23A;}
|
||||
.content_box .item .status.notPass{background: #fdf6ec; color: #e6a23c;}
|
||||
.flexbox{display: flex;}
|
||||
p{color: #333;}
|
||||
.mt10{margin-top: 10px;}
|
||||
|
||||
@@ -8,12 +8,16 @@
|
||||
{{item.name}}
|
||||
</h5>
|
||||
<p>{{item.rongCont}}</p>
|
||||
<div class="line"></div>
|
||||
<!-- <div class="line"></div> -->
|
||||
</div>
|
||||
<!-- 作者联系 -->
|
||||
<div class="contactAuthor">
|
||||
|
||||
</div>
|
||||
<div style="margin: 30px 0 0 0;">
|
||||
<el-button type="primary" @click="pushProduce(detailMes)" style="width: 220px;">
|
||||
<el-button type="primary" @click="pushToAccept(detailMes)" style="width: 220px;">
|
||||
<i class="el-icon-finished"></i>
|
||||
Push To Produce
|
||||
Push To Accept
|
||||
</el-button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -27,10 +31,8 @@
|
||||
<!-- 文件上传 -->
|
||||
|
||||
|
||||
|
||||
<!-- 文章正文 -->
|
||||
|
||||
|
||||
<!-- 参考文献 -->
|
||||
<div :ref="tabsList[0].refName" class="scroll-item">
|
||||
<div class="bor_style_onli">
|
||||
@@ -337,7 +339,7 @@
|
||||
// }
|
||||
],
|
||||
detailMes: {
|
||||
title:'454545',
|
||||
title:'',
|
||||
type: "",
|
||||
journal_special_id: "None",
|
||||
},
|
||||
@@ -660,10 +662,11 @@
|
||||
created() {
|
||||
this.getHight();
|
||||
window.addEventListener('resize', this.getHight);
|
||||
this.getData();
|
||||
this.getAuthorJG();
|
||||
this.getCount();
|
||||
this.getWorldPdf();
|
||||
// this.getData();
|
||||
this.getArtcleDetails()
|
||||
// this.getAuthorJG();
|
||||
// this.getCount();
|
||||
// this.getWorldPdf();
|
||||
|
||||
},
|
||||
methods: {
|
||||
@@ -698,10 +701,32 @@
|
||||
// }
|
||||
// },
|
||||
// 获取p_article_id的值
|
||||
getParticle_id(){
|
||||
|
||||
},
|
||||
|
||||
getArtcleDetails(){
|
||||
// 获得文章详情
|
||||
const loading = this.$loading({
|
||||
lock: true,
|
||||
text: 'Loading...',
|
||||
spinner: 'el-icon-loading',
|
||||
background: 'rgba(0, 0, 0, 0.7)'
|
||||
});
|
||||
this.$api
|
||||
.post('api/Article/getPreacceptArticleDetail', {'article_id': this.article_id})
|
||||
.then(res => {
|
||||
loading.close()
|
||||
this.p_article_id = res.data.production.p_article_id
|
||||
if(this.p_article_id != null){
|
||||
this.getData()
|
||||
this.getAuthorJG();
|
||||
this.getCount();
|
||||
this.getWorldPdf();
|
||||
}
|
||||
})
|
||||
.catch(err => {
|
||||
this.$message.error(err);
|
||||
loading.close()
|
||||
});
|
||||
},
|
||||
getData() {
|
||||
this.idform.p_article_id = this.p_article_id;
|
||||
this.detailMes.p_article_id = this.p_article_id;
|
||||
@@ -1915,9 +1940,17 @@
|
||||
this.content = html;
|
||||
},
|
||||
|
||||
// 提交到produce
|
||||
pushProduce(detailMes){
|
||||
this.$message.error('还没对接接口')
|
||||
// 提交到 accept
|
||||
pushToAccept(detailMes){
|
||||
this.$confirm(`Are you sure you want to adjust this article status to 'accept'?`, 'Prompt', {
|
||||
confirmButtonText: 'Yes',
|
||||
cancelButtonText: 'Cancle',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$message.error('还没对接接口')
|
||||
}).catch(() => {
|
||||
});
|
||||
|
||||
},
|
||||
// 点击开始上线显示
|
||||
pushOnline(detailMes) {
|
||||
|
||||
@@ -96,7 +96,7 @@
|
||||
<font> | </font>
|
||||
<span @click="goPre_ingested(item.article_id)" class="preButton">
|
||||
<!-- <el-badge is-dot class="item" > -->
|
||||
<i class="el-icon-paperclip"></i>Complete the profile
|
||||
<i class="el-icon-edit"></i>Complete the profile
|
||||
<!-- </el-badge> -->
|
||||
</span>
|
||||
</span>
|
||||
@@ -737,8 +737,8 @@
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.preButton{color: #66b1ff; display: inline-block; position: relative; }
|
||||
.preButton:after{content: ''; display: block; width: 6px; height: 6px; background: #ff0000; position: absolute; right: 0; top: -5px; border-radius: 6px;}
|
||||
.preButton{ display: inline-block; position: relative; }
|
||||
/* .preButton:after{content: ''; display: block; width: 6px; height: 6px; background: #ff0000; position: absolute; right: 0; top: -5px; border-radius: 6px;} */
|
||||
.preButton:hover{text-decoration:underline !important;}
|
||||
.container {
|
||||
color: #333;
|
||||
|
||||
@@ -334,7 +334,7 @@
|
||||
<el-table-column label=" " align="center" width="200px">
|
||||
<template slot-scope="scope">
|
||||
<el-button @click="changeEnter(scope.row)" size="mini" type="primary" plain
|
||||
icon="el-icon-paperclip">Enter</el-button>
|
||||
icon="el-icon-paperclip">Edit</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -842,15 +842,17 @@
|
||||
state: 2
|
||||
}, {
|
||||
state: 4
|
||||
}, {
|
||||
state: 3
|
||||
},
|
||||
{
|
||||
state: 6
|
||||
},
|
||||
{
|
||||
state: 5
|
||||
}],
|
||||
},
|
||||
{
|
||||
state: 3
|
||||
},
|
||||
],
|
||||
Total: 0,
|
||||
geogleList: [],
|
||||
IndexForm: {},
|
||||
|
||||
Reference in New Issue
Block a user