123456789101112131415161718192021 |
- <cu-custom bgColor="bg-lw-header" isCustom="{{true}}"><view slot="content">政策详情</view></cu-custom>
- <view class="title padding-lr bg-white">{{info.post_title}}</view>
- <!-- 作者和时间 -->
- <view class="cu-list menu padding-lr bg-white">
- <view class="cu-item" style="padding:0;">
- <view class="content padding-tb-sm" style="line-height:1em;">
- <view class="text-sm">
- <text wx:if="{{info.post_source}}" style="margin-right:20rpx;">{{info.post_source}}</text>
- <text class="cuIcon-attention lg"></text>{{info.post_hits}}
- </view>
- <view class="text-gray text-xs">{{info.published_time}}</view>
- </view>
- </view>
- </view>
- <!-- 内容 -->
- <view class="padding bg-white">
- <rich-text nodes="{{content}}"></rich-text>
- </view>
|