This commit is contained in:
@fawn-nine
2023-06-28 15:39:53 +08:00
parent fbfbd8b6f6
commit cf880b0864
4 changed files with 81 additions and 34 deletions

View File

@@ -12,17 +12,22 @@
</el-col>
</el-row>
<!-- 内容 -->
<el-row :gutter="20" class="content_box mt20">
<el-col>
<!-- 文章引用 -->
<div class="scroll-item">
<el-row :gutter="20" class="content_box mt20">
<!-- 文章引用 -->
<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" >&nbsp; &nbsp;Click here to edit</el-link> </p>
</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" >&nbsp; &nbsp;Click here to edit</el-link> </p>
</div>
</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;}