maritime.wxml 419 B

123456
  1. <view class="title">海事公告</view>
  2. <scroll-view class="container" bindrefresherrefresh="scrollDownList" refresher-triggered="{{isFreshing}}" refresher-enabled="{{true}}" scroll-y="true" bindscrolltolower="scrollList" style="height:calc(100vh - 120rpx)">
  3. <view class="mb20 item" wx:for="{{list}}" wx:key="index" bind:tap="openFile" data-item="{{item}}">
  4. {{index+1}}. {{item.fileName}}
  5. </view>
  6. </scroll-view>