detail.wxml 765 B

1234567891011121314
  1. <view class="common_fix common_back" hidden="{{!showBack}}" bindtap="toTop">
  2. <text class="icon icon-toTop"></text>
  3. </view>
  4. <view class='read'>
  5. <view class='read-title'>{{data.title}}</view>
  6. <!-- <view class='read-content'>{{data.content}}</view> -->
  7. <rich-text class='read-content' nodes="{{data.content}}"></rich-text>
  8. <view class='read-number'><text class='icon-single'></text>{{data.readerNum}}人已读</view>
  9. </view>
  10. <view class='bottom-button'>
  11. <button class='button button-radius button-subtitle read-button' bindtap='read' wx:if="{{data.myRead==0}}">我已阅读</button>
  12. <button class='button button-radius button-light read-button' wx:else>我已阅读</button>
  13. </view>
  14. <alert show="{{alertStatus}}" _CONFIG_="{{alert}}" bind:close="close" />