|
|
|
@ -5,18 +5,18 @@ |
|
|
|
|
<div class="flex-between"> |
|
|
|
|
<el-page-header @back="goBack" content="查看报告"></el-page-header> |
|
|
|
|
<div> |
|
|
|
|
<el-button v-if="!loading" size="mini" @click="editReport"> |
|
|
|
|
{{ editing ? "保存" : "编辑" }} |
|
|
|
|
</el-button> |
|
|
|
|
<el-button type="primary" size="mini" @click="exportPage">导出实验报告</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div style='width: 1125.25px;background: #fff;box-shadow: 0px 2px 25px 2px #D1D1D1;margin:10px auto;height: calc(100vh - 0px);'> |
|
|
|
|
<div style='width: 1125.25px;background: #fff;box-shadow: 0px 2px 25px 2px #D1D1D1;margin:50px auto;'> |
|
|
|
|
<div class="report-wrap" :class="{loading}" id="pdfDom"> |
|
|
|
|
<div style='padding: 30px 100px;overflow: hidden;width:100%'> |
|
|
|
|
<div style="position: relative;"> |
|
|
|
|
<div style="position: relative;margin-top:30px"> |
|
|
|
|
<h6 style="text-align: center;font-size: 20px">标准实验报告</h6> |
|
|
|
|
<el-button v-if="!loading" style="position: absolute;top: 0;right: 0;" size="mini" @click="editReport"> |
|
|
|
|
{{ editing ? "保存" : "编辑" }} |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<div class="flex-center m-b-20 user_header"> |
|
|
|
|
<p class="addhr_tag"></p> |
|
|
|
@ -59,13 +59,13 @@ |
|
|
|
|
<div class="meta-title-wrap"> |
|
|
|
|
<p class="meta-title"><img src="@/assets/img/cup.png" alt=""> 实验项目名称</p> |
|
|
|
|
</div> |
|
|
|
|
<el-input class='textAreaFont' v-model="form.projectName" type="textarea" :disabled="!editing" rows="5"></el-input> |
|
|
|
|
<el-input style='font-size: 14px' class='textAreaFont' v-model="form.projectName" type="textarea" :disabled="!editing" rows="5"></el-input> |
|
|
|
|
</div> |
|
|
|
|
<div class="m-b-20"> |
|
|
|
|
<div class="meta-title-wrap"> |
|
|
|
|
<p class="meta-title">实验目的</p> |
|
|
|
|
</div> |
|
|
|
|
<div class="pre-wrap" v-html="form.purpose"></div> |
|
|
|
|
<div style='font-size: 14px' class="pre-wrap" v-html="form.purpose"></div> |
|
|
|
|
</div> |
|
|
|
|
<div class="m-b-20"> |
|
|
|
|
<div class="meta-title-wrap"> |
|
|
|
@ -115,7 +115,12 @@ |
|
|
|
|
<div class="meta-title-wrap"> |
|
|
|
|
<p class="meta-title">实验总结与体会</p> |
|
|
|
|
</div> |
|
|
|
|
<el-input type="textarea" v-model="form.summarize" rows="5" :disabled="!editing"></el-input> |
|
|
|
|
<div v-if='!editing' style='background: #e5dfff;color: #777;min-height: 100px;overflow: hidden'> |
|
|
|
|
<div style='padding: 10px;font-size: 14px'> |
|
|
|
|
{{form.summarize}} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<el-input v-else type="textarea" v-model="form.summarize" rows="5" :disabled="!editing"></el-input> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -257,7 +262,8 @@ export default { |
|
|
|
|
|
|
|
|
|
#pdfDom { |
|
|
|
|
width: 100%; |
|
|
|
|
height: calc(100vh - 100px); |
|
|
|
|
height: 100%; |
|
|
|
|
//height: calc(100vh - 200px); |
|
|
|
|
background: #fff; |
|
|
|
|
box-sizing: border-box; |
|
|
|
|
//box-shadow: 0px 2px 25px 2px #D1D1D1; |
|
|
|
@ -324,8 +330,8 @@ export default { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/ .cell { |
|
|
|
|
font-size: 16px; |
|
|
|
|
line-height: 35px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
line-height: 25px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// /deep/.el-row{ |
|
|
|
|