detail.wxml 770 B

123456789101112131415161718192021
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}"><view slot="content">政策详情</view></cu-custom>
  2. <view class="title padding-lr bg-white">{{info.post_title}}</view>
  3. <!-- 作者和时间 -->
  4. <view class="cu-list menu padding-lr bg-white">
  5. <view class="cu-item" style="padding:0;">
  6. <view class="content padding-tb-sm" style="line-height:1em;">
  7. <view class="text-sm">
  8. <text wx:if="{{info.post_source}}" style="margin-right:20rpx;">{{info.post_source}}</text>
  9. <text class="cuIcon-attention lg"></text>{{info.post_hits}}
  10. </view>
  11. <view class="text-gray text-xs">{{info.published_time}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. <!-- 内容 -->
  16. <view class="padding bg-white">
  17. <rich-text nodes="{{content}}"></rich-text>
  18. </view>