|
@@ -6,10 +6,10 @@
|
|
|
<view class="item-image" v-if="list.BodyHtml">
|
|
|
<image :src="list.BodyHtml"></image>
|
|
|
</view>
|
|
|
- <block v-if="list.Annotation">
|
|
|
- <text class="item-content">{{ list.ArticleResponse == 4 ? "核心观点" : "核心结论" }}:</text>
|
|
|
+ <block v-if="list.Annotation || list.Body[0]">
|
|
|
+ <text class="item-content" v-if="!list.Body[0]">{{ list.ArticleResponse == 4 ? "核心观点" : "核心结论" }}:</text>
|
|
|
<view class="item-rich-text">
|
|
|
- <mp-html :content="richTextClamp(7) + list.Annotation + '</div>'" />
|
|
|
+ <mp-html :content="richTextClamp(7) + (list.Annotation || list.Body[0]) + '</div>'" />
|
|
|
</view>
|
|
|
</block>
|
|
|
<view class="item-abstract text-Line" v-if="list.Abstract && list.ArticleResponse != 1"> 摘要:{{ list.Abstract }} </view>
|