https://blog.csdn.net/qq_2842405070/article/details/69415164

结论就是,scroll-view中,设置display:flex是没不起作用的

中文文字片段在view中不能换行的问题,要使用强制换行,至于是使用white-space:pre-line(不会保留空白和tabs),还是white-space:pre-wrap(会保留空白和tabs),就要看个人的编程习惯了

<div class="detail" style='white-space:pre-line'>{{info.desc}}</div>