You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
874 B

5 years ago
<!--pages/info/newsInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" />
<title title="资讯详情"></title>
<image lazy-load wx:if="{{info}}" class="swiper" src="{{info.cover}}" mode="aspectFill"></image>
5 years ago
<view class="content" wx:if="{{info}}">
<view class="title">{{info.title}}</view>
<view class="subtitle" wx:if="{{info.source}}">来源:{{info.source}}</view>
<view class="subtitle" wx:if="{{info.author}}">作者:{{info.author}}</view>
<view class="subtitle" wx:if="{{info.editor}}">编辑:{{info.editor}}</view>
<view class="subtitle" wx:if="{{info.photographer}}">摄影:{{info.photographer}}</view>
</view>
<view class="content" style="margin-top:20rpx;border-radius:0" wx:if="{{info}}">
<view class="title">详情内容:</view>
<rich-text class="detail" nodes="{{tool.formateRichText(info.content)}}"></rich-text>
</view>