newsPaper.wxml 692 B

123456789101112
  1. <!--pages/newsPaper/newsPaper.wxml-->
  2. <view>
  3. <scroll-view style="height: 100%;" class="list" scroll-y="true">
  4. <view wx:for="{{pageData}}" wx:key="index" class="items" bindtap="gotoWeb" data-contentUrl="{{item.contentUrl}}">
  5. <!-- 标题,副标题,来源,更新时间 -->
  6. <view class="title">{{item.title}}</view>
  7. <image wx:if="{{item.imgUrls}}" style="width: 100%;height: 300rpx;margin-top: 30rpx;" src="{{item.imgUrls}}" />
  8. <view style="font-size: 30rpx;color: #666666;margin: 20rpx 0;">来源:{{item.infoSource}}</view>
  9. <view style="font-size: 28rpx;color: #666666;">直播时间:{{item.onlineTime}}——{{item.onlineTimeDate}}</view>
  10. </view>
  11. </scroll-view>
  12. </view>