education-list.wxml 698 B

1234567891011121314
  1. <!--module/diet/pages/science-list/science-list.wxml-->
  2. <t-navbar title="宣教通知" left-arrow />
  3. <view style="flex: auto;overflow: hidden;">
  4. <scroll-view class="list-wrapper scrollable" scroll-y type="custom" enhanced bind:scrolltolower="loadMore">
  5. <list-builder list="{{dataset}}" child-height="125">
  6. <education-card slot:item slot:index item="{{item}}" index="{{index}}"></education-card>
  7. </list-builder>
  8. <view class="tips" wx:if="{{loading}}">加载中...</view>
  9. <view class="tips" wx:elif="{{isLastPage}}">没有更多的了</view>
  10. </scroll-view>
  11. </view>
  12. <view style="height: {{container.safeBottomOffset}}px;flex: none;"></view>
  13. <t-message id="{{$messageId}}" />