feat: 添加文本换行样式以改善审批详情的可读性

This commit is contained in:
kuaifan 2026-01-13 10:54:13 +00:00
parent 47c53a18fa
commit 3026cd698f
2 changed files with 5 additions and 1 deletions

View File

@ -44,7 +44,7 @@
</div>
<div class="approve-details-text">
<h4>{{$L('事由')}}</h4>
<p>{{datas.var?.description || '- -'}}</p>
<p class="wrap-text">{{datas.var?.description || '- -'}}</p>
</div>
<div class="approve-details-text" v-if="datas.var?.other">
<h4>{{$L('图片')}}</h4>

View File

@ -282,6 +282,10 @@
padding-left: 4px;
}
}
.wrap-text {
white-space: pre-wrap;
}
}
.approve-record-timeline {