index.wxml 865 B

1234567891011121314
  1. <scroll-view scroll-y="{{true}}" style="height: 100vh" bindscrolltolower="atBottom">
  2. <view wx:for="{{articleList || []}}" style="margin-bottom: 20rpx" wx:key="_id">
  3. <!-- <view bindtap="toDetail" data-newsUrl="{{item.webpageUrl}}" data-title="{{item.title}}"> -->
  4. <view data-newsUrl="{{item.news_url}}" data-title="{{item.news_title}}">
  5. <view class="newList">
  6. <image mode="aspectFit" class="newsImg" src="{{item.coverPictureUrl}}" wx:if="{{item.coverPictureUrl}}"></image>
  7. <view class="newsTitle" style="{{item.coverPictureUrl ? 'margin-top: -240rpx' : 'padding-left: 10rpx'}}">
  8. <text wx:if="{{item.summary}}" class="top">{{item.summary}}</text>
  9. <text wx:if="{{item.publishedMinute}}" class="subTitle">发布日期 {{item.publishedMinute}}</text>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. </scroll-view>