|
|
|
@ -3,222 +3,141 @@ |
|
|
|
|
<div class="wrap"> |
|
|
|
|
<div class="top"> |
|
|
|
|
<breadcrumb :routes.sync="routes" /> |
|
|
|
|
<span v-if="fromPython" |
|
|
|
|
class="back" |
|
|
|
|
@click="back">返回实验</span> |
|
|
|
|
<span v-if="fromPython" class="back" @click="back">返回实验</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="content" |
|
|
|
|
v-loading="loading" |
|
|
|
|
id="pdfDom"> |
|
|
|
|
<div class="content" v-loading="loading" id="pdfDom"> |
|
|
|
|
<div class="text-right"> |
|
|
|
|
<el-button @click="editReport"> |
|
|
|
|
{{ editing ? "保存" : "编辑" }} |
|
|
|
|
</el-button> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="exportPage">导出报告</el-button> |
|
|
|
|
<el-button type="primary" @click="exportPage">导出报告</el-button> |
|
|
|
|
</div> |
|
|
|
|
<h6 class="r-title">标准实验报告</h6> |
|
|
|
|
<div class="info"> |
|
|
|
|
<h6 class="l-title"> |
|
|
|
|
<img src="@/assets/img/report1.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/report1.png" alt=""> |
|
|
|
|
基本信息 |
|
|
|
|
</h6> |
|
|
|
|
<ul :class="['info-list', {edit: editing}]"> |
|
|
|
|
<ul :class="['info-list', { edit: editing }]"> |
|
|
|
|
<li> |
|
|
|
|
<label>学生姓名:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.userName" |
|
|
|
|
disabled></el-input> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.userName" disabled></el-input> |
|
|
|
|
<span v-else>{{ infoData.userName }}</span> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>学生学号:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.workNumber" |
|
|
|
|
disabled></el-input> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.workNumber" disabled></el-input> |
|
|
|
|
<span v-else>{{ infoData.workNumber }}</span> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>实验时间:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.submitTime" |
|
|
|
|
disabled></el-input> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.submitTime" disabled></el-input> |
|
|
|
|
<span v-else>{{ infoData.submitTime }}</span> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>实验成绩:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.score" |
|
|
|
|
disabled></el-input> |
|
|
|
|
<div v-else |
|
|
|
|
class="score-wrap"> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.score" disabled></el-input> |
|
|
|
|
<div v-else class="score-wrap"> |
|
|
|
|
<em>{{ infoData.score }}</em> |
|
|
|
|
<img src="@/assets/img/point.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/point.png" alt=""> |
|
|
|
|
</div> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>学生班级:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.className"></el-input> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.className"></el-input> |
|
|
|
|
<span v-else>{{ infoData.className }}</span> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>指导老师:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.instructor"></el-input> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.instructor"></el-input> |
|
|
|
|
<span v-else>{{ infoData.instructor }}</span> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>实验学时:</label> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.period"></el-input> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.period"></el-input> |
|
|
|
|
<span v-else>{{ infoData.period }}</span> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
<div class="m-b-20"> |
|
|
|
|
<h6 class="l-title"> |
|
|
|
|
<img src="@/assets/img/report2.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/report2.png" alt=""> |
|
|
|
|
实验项目名称 |
|
|
|
|
</h6> |
|
|
|
|
<el-input v-if="editing" |
|
|
|
|
v-model="infoData.projectName" |
|
|
|
|
type="textarea"></el-input> |
|
|
|
|
<div v-else |
|
|
|
|
class="pre-wrap" |
|
|
|
|
v-html="infoData.projectName"></div> |
|
|
|
|
<el-input v-if="editing" v-model="infoData.projectName" type="textarea"></el-input> |
|
|
|
|
<div v-else class="pre-wrap" v-html="infoData.projectName"></div> |
|
|
|
|
</div> |
|
|
|
|
<div class="m-b-20"> |
|
|
|
|
<h6 class="l-title"> |
|
|
|
|
<img src="@/assets/img/report3.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/report3.png" alt=""> |
|
|
|
|
实验目的 |
|
|
|
|
</h6> |
|
|
|
|
<quill v-if="editing" |
|
|
|
|
:border="true" |
|
|
|
|
v-model="infoData.purpose" |
|
|
|
|
:height="150" /> |
|
|
|
|
<div v-else |
|
|
|
|
:class="['pre-wrap', {edit: editing}]" |
|
|
|
|
v-html="infoData.purpose"></div> |
|
|
|
|
<quill v-if="editing" :border="true" v-model="infoData.purpose" :height="150" /> |
|
|
|
|
<div v-else :class="['pre-wrap', { edit: editing }]" v-html="infoData.purpose"></div> |
|
|
|
|
</div> |
|
|
|
|
<div class="m-b-20"> |
|
|
|
|
<h6 class="l-title"> |
|
|
|
|
<img src="@/assets/img/report4.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/report4.png" alt=""> |
|
|
|
|
实验数据 |
|
|
|
|
</h6> |
|
|
|
|
<el-table :data="expData" |
|
|
|
|
class="table" |
|
|
|
|
border |
|
|
|
|
stripe |
|
|
|
|
header-align="center"> |
|
|
|
|
<el-table-column type="index" |
|
|
|
|
label="序号" |
|
|
|
|
:key="1" |
|
|
|
|
align="center" |
|
|
|
|
width="60"> |
|
|
|
|
<el-table :data="expData" class="table" border stripe header-align="center"> |
|
|
|
|
<el-table-column type="index" label="序号" :key="1" align="center" width="60"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
{{ scope.$index + 1 }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="judgmentName" |
|
|
|
|
label="判分点" |
|
|
|
|
width="200" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column v-if="project" |
|
|
|
|
prop="judgmentName" |
|
|
|
|
label="考核点" |
|
|
|
|
align="center" |
|
|
|
|
:key="2" |
|
|
|
|
width="150"> |
|
|
|
|
<el-table-column prop="judgmentName" label="判分点" width="200" align="center"></el-table-column> |
|
|
|
|
<el-table-column v-if="IsLc" prop="judgmentName" label="考核点" align="center" :key="2" width="150"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<div v-for="(item, index) in scope.row.lcRuleRecords" |
|
|
|
|
:key="index"> |
|
|
|
|
<div v-for="(item, index) in scope.row.lcRuleRecords" :key="index"> |
|
|
|
|
<span> |
|
|
|
|
<span>{{index+1}}. </span>{{item.name}} |
|
|
|
|
<span>{{ index + 1 }}. </span>{{ item.name }} |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="ruleAnswer" |
|
|
|
|
label="参考答案" |
|
|
|
|
:key="3" |
|
|
|
|
style='word-wrap: break-word'> |
|
|
|
|
<el-table-column prop="ruleAnswer" label="参考答案" :key="3" style='word-wrap: break-word'> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<div v-if='scope.row.lcRuleRecords'> |
|
|
|
|
<div v-for="(item, index) in scope.row.lcRuleRecords" |
|
|
|
|
:key="index"> |
|
|
|
|
<div v-if="scope.row.lcRuleRecords"> |
|
|
|
|
<div v-for="(item, index) in scope.row.lcRuleRecords" :key="index"> |
|
|
|
|
<span> |
|
|
|
|
<span>{{index+1}}. </span>{{item.ruleAnswer}} |
|
|
|
|
<span>{{ index + 1 }}. </span>{{ item.ruleAnswer }} |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div v-else |
|
|
|
|
v-html="scope.row.referenceAnswer"></div> |
|
|
|
|
<div v-else v-html="scope.row.referenceAnswer"></div> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="userAnswer" |
|
|
|
|
:key="4" |
|
|
|
|
label="学生答案"> |
|
|
|
|
<el-table-column prop="userAnswer" :key="4" label="学生答案"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<div v-if='scope.row.lcRuleRecords'> |
|
|
|
|
<div v-for="(item, index) in scope.row.lcRuleRecords" |
|
|
|
|
:key="index"> |
|
|
|
|
{{index+1}}. {{item.userAnswer || '未填写'}} |
|
|
|
|
<div v-if="scope.row.lcRuleRecords"> |
|
|
|
|
<div v-for="(item, index) in scope.row.lcRuleRecords" :key="index"> |
|
|
|
|
{{ index + 1 }}. {{ item.userAnswer || '未填写' }} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div v-else |
|
|
|
|
v-html='scope.row.answer' |
|
|
|
|
style='white-space: pre-wrap'></div> |
|
|
|
|
<div v-else v-html="scope.row.answer" style="white-space: pre-wrap"></div> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column v-if="!project" |
|
|
|
|
prop="runResult" |
|
|
|
|
label="学生运行结果" |
|
|
|
|
:key="5" |
|
|
|
|
align="center"> |
|
|
|
|
<el-table-column v-if="!IsLc" prop="runResult" label="学生运行结果" :key="5" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<div class="m-b-20" |
|
|
|
|
v-html='scope.row.runResult' |
|
|
|
|
style='white-space: pre-wrap'></div> |
|
|
|
|
<div class="m-b-20" v-html="scope.row.runResult" style="white-space: pre-wrap"></div> |
|
|
|
|
<template v-if="scope.row.runThePictureList"> |
|
|
|
|
<img v-for="(img, i) in scope.row.runThePictureList" |
|
|
|
|
:key="i" |
|
|
|
|
width="200" |
|
|
|
|
class="result-pic" |
|
|
|
|
:src="img" |
|
|
|
|
alt=""> |
|
|
|
|
<img v-for="(img, i) in scope.row.runThePictureList" :key="i" width="200" class="result-pic" |
|
|
|
|
:src="img" alt=""> |
|
|
|
|
</template> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="quesScore" |
|
|
|
|
:key="6" |
|
|
|
|
label="分值" |
|
|
|
|
width="80" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="score" |
|
|
|
|
label="得分" |
|
|
|
|
:key="7" |
|
|
|
|
width="80" |
|
|
|
|
align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="quesScore" :key="6" label="分值" width="80" align="center"></el-table-column> |
|
|
|
|
<el-table-column prop="score" label="得分" :key="7" width="80" align="center"></el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|
</div> |
|
|
|
|
<div class="m-b-20"> |
|
|
|
|
<h6 class="l-title"> |
|
|
|
|
<img src="@/assets/img/report5.png" |
|
|
|
|
alt=""> |
|
|
|
|
<img src="@/assets/img/report5.png" alt=""> |
|
|
|
|
实验总结与体会 |
|
|
|
|
</h6> |
|
|
|
|
<Editor v-if="editing" |
|
|
|
|
api-key='rnk6zw9v267xqz7pf98twt1vmrvltmd436je7a642pckltda' |
|
|
|
|
v-model="infoData.summarize" |
|
|
|
|
:init="editorConfig" /> |
|
|
|
|
<div v-else |
|
|
|
|
class="pre-wrap" |
|
|
|
|
v-html="infoData.summarize"></div> |
|
|
|
|
<Editor v-if="editing" api-key='rnk6zw9v267xqz7pf98twt1vmrvltmd436je7a642pckltda' v-model="infoData.summarize" |
|
|
|
|
:init="editorConfig" /> |
|
|
|
|
<div v-else class="pre-wrap" v-html="infoData.summarize"></div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -249,7 +168,7 @@ export default { |
|
|
|
|
editing: false, |
|
|
|
|
loadIns: null, |
|
|
|
|
loading: false, |
|
|
|
|
project: false, |
|
|
|
|
IsLc: false, |
|
|
|
|
userScores: [], |
|
|
|
|
quills: [], |
|
|
|
|
quillIndex1: 0, |
|
|
|
@ -335,8 +254,8 @@ export default { |
|
|
|
|
}, |
|
|
|
|
// 处理实验数据 |
|
|
|
|
handleList (list) { |
|
|
|
|
this.project = list.find(e => e.lcRuleRecords) // 银行系统才有lcRuleRecords |
|
|
|
|
if (this.project) { |
|
|
|
|
this.IsLc = list.find(e => e.lcRuleRecords) // 流程系统才有lcRuleRecords |
|
|
|
|
if (this.IsLc) { |
|
|
|
|
list.map(e => { |
|
|
|
|
e.assessmentPoint = '' |
|
|
|
|
e.referenceAnswer = '' |
|
|
|
@ -379,7 +298,7 @@ export default { |
|
|
|
|
// if (form[i] && typeof form[i] === 'string') form[i] = form[i].replace(/<[^>]+>/g, '') |
|
|
|
|
// } |
|
|
|
|
form.purpose = form.purpose.replace(/<[^>]+>/g, '') |
|
|
|
|
this.$post(this.project ? this.api.exportBankExperimentReport : this.api.exportLabReport, { |
|
|
|
|
this.$post(this.IsLc ? this.api.exportBankExperimentReport : this.api.exportLabReport, { |
|
|
|
|
...form, |
|
|
|
|
experimentalData: list |
|
|
|
|
}).then(res => { |
|
|
|
@ -446,150 +365,183 @@ export default { |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
@import '/styles/css/editor.css'; |
|
|
|
|
|
|
|
|
|
.top { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
.back { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #007eff; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 15px; |
|
|
|
|
|
|
|
|
|
.back { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #007eff; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.breadcrumb { |
|
|
|
|
/deep/.el-breadcrumb__item { |
|
|
|
|
.is-link, |
|
|
|
|
.el-breadcrumb__separator { |
|
|
|
|
font-weight: 400; |
|
|
|
|
color: $main-color; |
|
|
|
|
} |
|
|
|
|
&:last-child { |
|
|
|
|
.is-link { |
|
|
|
|
color: #0b1d30; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.el-breadcrumb__item { |
|
|
|
|
.is-link, |
|
|
|
|
.el-breadcrumb__separator { |
|
|
|
|
font-weight: 400; |
|
|
|
|
color: $main-color; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
&:last-child { |
|
|
|
|
.is-link { |
|
|
|
|
color: #0b1d30; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.wrap { |
|
|
|
|
padding: 12px 300px 20px; |
|
|
|
|
padding: 12px 300px 20px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
code, |
|
|
|
|
kbd, |
|
|
|
|
samp { |
|
|
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif; |
|
|
|
|
word-wrap: break-word; |
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif; |
|
|
|
|
word-wrap: break-word; |
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/ pre { |
|
|
|
|
white-space: pre-wrap; /* css-3 */ |
|
|
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ |
|
|
|
|
white-space: pre-wrap; /* Opera 4-6 */ |
|
|
|
|
white-space: -o-pre-wrap; /* Opera 7 */ |
|
|
|
|
word-wrap: break-word; /* Internet Explorer 5.5+ */ |
|
|
|
|
word-break: break-all; |
|
|
|
|
overflow: hidden; |
|
|
|
|
font-size: 12px; |
|
|
|
|
font-weight: 400; |
|
|
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif; |
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
/* css-3 */ |
|
|
|
|
white-space: -moz-pre-wrap; |
|
|
|
|
/* Mozilla, since 1999 */ |
|
|
|
|
white-space: pre-wrap; |
|
|
|
|
/* Opera 4-6 */ |
|
|
|
|
white-space: -o-pre-wrap; |
|
|
|
|
/* Opera 7 */ |
|
|
|
|
word-wrap: break-word; |
|
|
|
|
/* Internet Explorer 5.5+ */ |
|
|
|
|
word-break: break-all; |
|
|
|
|
overflow: hidden; |
|
|
|
|
font-size: 12px; |
|
|
|
|
font-weight: 400; |
|
|
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.content { |
|
|
|
|
padding: 16px 40px; |
|
|
|
|
background: #fff; |
|
|
|
|
.r-title { |
|
|
|
|
margin-bottom: 40px; |
|
|
|
|
font-size: 24px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #333; |
|
|
|
|
padding: 16px 40px; |
|
|
|
|
background: #fff; |
|
|
|
|
|
|
|
|
|
.r-title { |
|
|
|
|
margin-bottom: 40px; |
|
|
|
|
font-size: 24px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.info { |
|
|
|
|
padding: 20px 16px; |
|
|
|
|
border: 1px solid #e1e6f2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.l-title { |
|
|
|
|
padding: 5px 8px; |
|
|
|
|
background-color: #f7f9fc; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.info-list { |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
padding: 10px 0 0 20px; |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
display: inline-flex; |
|
|
|
|
width: 25%; |
|
|
|
|
padding: 0 10px; |
|
|
|
|
margin-bottom: 34px; |
|
|
|
|
} |
|
|
|
|
.info { |
|
|
|
|
padding: 20px 16px; |
|
|
|
|
border: 1px solid #e1e6f2; |
|
|
|
|
|
|
|
|
|
&.edit { |
|
|
|
|
li { |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.l-title { |
|
|
|
|
padding: 5px 8px; |
|
|
|
|
background-color: #f7f9fc; |
|
|
|
|
|
|
|
|
|
label { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
} |
|
|
|
|
.info-list { |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
padding: 10px 0 0 20px; |
|
|
|
|
li { |
|
|
|
|
display: inline-flex; |
|
|
|
|
width: 25%; |
|
|
|
|
padding: 0 10px; |
|
|
|
|
margin-bottom: 34px; |
|
|
|
|
} |
|
|
|
|
&.edit { |
|
|
|
|
li { |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
label { |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
} |
|
|
|
|
span { |
|
|
|
|
min-width: 150px; |
|
|
|
|
padding: 0 10px 3px; |
|
|
|
|
border-bottom: 1px solid #e1e6f2; |
|
|
|
|
} |
|
|
|
|
/deep/.el-input { |
|
|
|
|
width: 174px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
span { |
|
|
|
|
min-width: 150px; |
|
|
|
|
padding: 0 10px 3px; |
|
|
|
|
border-bottom: 1px solid #e1e6f2; |
|
|
|
|
} |
|
|
|
|
.score-wrap { |
|
|
|
|
position: relative; |
|
|
|
|
min-width: 150px; |
|
|
|
|
border-bottom: 1px solid #e1e6f2; |
|
|
|
|
em { |
|
|
|
|
position: absolute; |
|
|
|
|
top: -12px; |
|
|
|
|
left: 30px; |
|
|
|
|
font-family: din; |
|
|
|
|
font-size: 30px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
} |
|
|
|
|
img { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: -15px; |
|
|
|
|
left: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.el-input { |
|
|
|
|
width: 174px; |
|
|
|
|
} |
|
|
|
|
/deep/.el-textarea .el-textarea__inner, |
|
|
|
|
.pre-wrap { |
|
|
|
|
min-height: 72px; |
|
|
|
|
padding: 10px 16px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
&.edit { |
|
|
|
|
color: #abb3c6; |
|
|
|
|
border: 1px solid #cacfdb; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
background-color: #f6f7f9; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.score-wrap { |
|
|
|
|
position: relative; |
|
|
|
|
min-width: 150px; |
|
|
|
|
border-bottom: 1px solid #e1e6f2; |
|
|
|
|
|
|
|
|
|
em { |
|
|
|
|
position: absolute; |
|
|
|
|
top: -12px; |
|
|
|
|
left: 30px; |
|
|
|
|
font-family: din; |
|
|
|
|
font-size: 30px; |
|
|
|
|
font-weight: 600; |
|
|
|
|
color: #0b1d30; |
|
|
|
|
} |
|
|
|
|
/deep/ .table th { |
|
|
|
|
background-color: #e1eaff !important; |
|
|
|
|
.cell { |
|
|
|
|
line-height: 35px; |
|
|
|
|
color: #555555; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
img { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: -15px; |
|
|
|
|
left: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/.el-textarea .el-textarea__inner, |
|
|
|
|
.pre-wrap { |
|
|
|
|
min-height: 72px; |
|
|
|
|
padding: 10px 16px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
color: #333; |
|
|
|
|
|
|
|
|
|
&.edit { |
|
|
|
|
color: #abb3c6; |
|
|
|
|
border: 1px solid #cacfdb; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
background-color: #f6f7f9; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/deep/ .table th { |
|
|
|
|
background-color: #e1eaff !important; |
|
|
|
|
|
|
|
|
|
.cell { |
|
|
|
|
line-height: 35px; |
|
|
|
|
color: #555555; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.result-pic { |
|
|
|
|
margin: 10px 0; |
|
|
|
|
margin: 10px 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media (max-width: 1650px) { |
|
|
|
|
.wrap { |
|
|
|
|
padding: 12px 200px 20px; |
|
|
|
|
} |
|
|
|
|
.wrap { |
|
|
|
|
padding: 12px 200px 20px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media (max-width: 1430px) { |
|
|
|
|
.wrap { |
|
|
|
|
padding: 12px 100px 20px; |
|
|
|
|
} |
|
|
|
|
.wrap { |
|
|
|
|
padding: 12px 100px 20px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |