This commit is contained in:
熊成强 2020-11-06 09:28:57 +08:00
parent 80c3ae6bf4
commit 62e2b80ab4
3 changed files with 18 additions and 2 deletions

View File

@ -136,7 +136,7 @@ export default {
}, },
methods: { methods: {
checkSelectable (row, index) { checkSelectable (row, index) {
return !this.nOSec && row.score === 0 return this.nOSec && row.score === 0
}, },
handlePopupCreat () { handlePopupCreat () {
this.$emit('update:showChooseList', false) this.$emit('update:showChooseList', false)

View File

@ -24,7 +24,7 @@
@cancel='handleCancel' @cancel='handleCancel'
@submit="handleSubmit" @submit="handleSubmit"
:footer='true' :footer='true'
title="驳回评分" title="评分"
> >
<div <div
slot="content" slot="content"

View File

@ -99,6 +99,9 @@
<span>{{i.staffName}}</span><span class="mubiao">#{{i.optDesc}}#</span> <span>{{i.staffName}}</span><span class="mubiao">#{{i.optDesc}}#</span>
</div> </div>
</div> </div>
<div class="comment" v-if="i.comment">
<pre>{{i.comment}}</pre>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -231,6 +234,19 @@ export default {
} }
} }
&-content { &-content {
.comment{
width: 200px;
margin: 0 0 0 50px;
padding: 10px;
background: rgb(240, 240, 240);
border-radius: 4px;
pre{
white-space: pre;
white-space: pre-wrap!important;
word-wrap: break-word!important;
*white-space:normal!important;
}
}
padding: 28px; padding: 28px;
margin: 10px 0 50px; margin: 10px 0 50px;
// height: 700px; // height: 700px;