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