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