|
@@ -19,14 +19,14 @@
|
|
|
<view class="flex video-box" v-if="[2,3].includes(item.CollectionType)" @click="goDetail(item)">
|
|
|
<image class="img" :src="item.ImgUrl" mode="aspectFill" lazy-load="true"/>
|
|
|
<view class="con">
|
|
|
- <view class="van-multi-ellipsis--l2 title">{{item.Title}}</view>
|
|
|
+ <view class="title" v-html="item.Title"></view>
|
|
|
<view class="author">{{item.Author}}</view>
|
|
|
<view class="time">发布时间:{{item.PublishTime}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 报告类型样式 -->
|
|
|
<view class="report-box" v-if="item.CollectionType==1" @click="goDetail(item)">
|
|
|
- <view class="van-multi-ellipsis--l2 title">{{item.Title}}</view>
|
|
|
+ <view class="title" v-html="item.Title"></view>
|
|
|
<view class="con">
|
|
|
<text v-if="item.ClassifyName">#{{item.ClassifyName}}</text>
|
|
|
<text v-if="item.ClassifySecondName" style="margin-left:20rpx">#{{item.ClassifySecondName}}</text>
|
|
@@ -274,6 +274,10 @@ page{
|
|
|
}
|
|
|
|
|
|
.report-box{
|
|
|
+ .title{
|
|
|
+ line-height: 1.7;
|
|
|
+ margin: 12rpx 0;
|
|
|
+ }
|
|
|
.con{
|
|
|
text{
|
|
|
display: inline-block;
|