news.wxml 847 B

123456789101112131415161718192021
  1. <!--pages/news/news.wxml-->
  2. <view class="news-detail-container">
  3. <text class="title">{{ currentNews.newsTitle }}</text>
  4. <view class="author-time">
  5. <!-- <image class="author-avatar" src="../{{currentNews.icon}}"></image> -->
  6. <text class="author-name">{{ currentNews.author }}</text>
  7. <text class="const-text">发表于</text>
  8. <text class="time">{{ currentNews.newsDate }}</text>
  9. </view>
  10. <image class="head-img" src="{{ currentNews.newsUrl[0] }}"></image>
  11. <!-- <view class="horizon"></view> -->
  12. <view class="tool">
  13. <!-- <view class="circle-img">
  14. <image src="../../../image/sch.png" ></image>
  15. <image src="../../../image/sc.png" ></image>
  16. <image class="share-img" src="../../../image/fx.png"></image>
  17. </view> -->
  18. <text class="detail">{{ currentNews.newsContent }}</text>
  19. </view>
  20. </view>