This commit is contained in:
熊成强 2020-11-10 11:02:57 +08:00
parent 386906b0ce
commit c095785a2a
3 changed files with 11 additions and 3 deletions

View File

@ -13,6 +13,14 @@
color: #52575b;
}
.pre{
pre{
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
}
}
.comonPromptFont {
font-size: 14px;
color: #b1b1b1;

View File

@ -28,7 +28,7 @@
{{child.keyResult || ''}}
</pre>
</div>
<div v-if="tableInfo.result || tableAuth.showResult">
<div class='pre' v-if="tableInfo.result || tableAuth.showResult">
<el-input v-if="tableInfo.result" type="textarea" size="mini" placeholder="请输入内容" v-model="child.checkResult" clearable></el-input>
<pre v-else>{{child.checkResult || '--'}}</pre>
</div>
@ -51,7 +51,7 @@
<div class="quanzhomng" style="flex:none;" v-if="tableInfo.score || tableAuth.showScore">
<span>{{child.scoreDtos[child.scoreDtos.length-1].acquireScore || '--'}}</span>
</div>
<div style="padding:10px;" v-if="tableInfo.score || tableAuth.showScore">
<div class='pre' style="padding:10px;" v-if="tableInfo.score || tableAuth.showScore">
<el-input v-if="tableInfo.score" style="width:200px;" size="mini" type="textarea" placeholder="请输入内容" v-model="child.scoreComment" clearable></el-input>
<span v-else>{{child.scoreComment || '--'}}</span>
</div>

View File

@ -59,7 +59,7 @@ export default {
}
// location.reload()
} else {
this.$message.error(res.msg0)
this.$message.error(res.msg)
}
}
},