phoneNewsPaper.wxml 602 B

123456789101112
  1. <!--pages/phoneNewsPaper/phoneNewsPaper.wxml-->
  2. <scroll-view scroll-y="true" style="height: 100%;padding:0;margin:0;">
  3. <view style="margin-top: 0rpx;padding: 0rpx 30rpx;">
  4. <ul class="list">
  5. <li style="position: relative;" wx:for-item="item" wx:for-index="index" wx:key="index" wx:for="{{newsPaperInfo}}" bindtap="gotoDetail" data-url="{{item.shareUrl}}">
  6. <view style="font-size: 20rpx;font-weight: 600;position: absolute;top: 25rpx;">·</view>
  7. <text class="title">{{item.detailTitle}}</text>
  8. <text class="time">{{item.detailOnlineTime}}</text>
  9. </li>
  10. </ul>
  11. </view>
  12. </scroll-view>