notice.wxml 724 B

123456789101112
  1. <view class="container">
  2. <van-tabs active="{{ active }}" bind:change="onChange" line-width="60rpx" line-height="5rpx" color='#FF4330'
  3. title-active-color="#FF4330" title-inactive-color="#666" sticky>
  4. <van-tab title="{{item.label}}" name="{{item.key}}" wx:for='{{tabList}}' wx:key="index">
  5. <edu-loadmore isEmpty="{{rows.length == 0}}" isRefresh="{{isRefresh}}" isLoading="{{isLoading}}"
  6. isComplete="{{noMore}}">
  7. <edu-msg-card wx:for="{{rows}}" wx:key="index" msg="{{msg}}" background="{{background}}"
  8. wx:for-item="msg" bind:read="noticeRead"/>
  9. </edu-loadmore>
  10. </van-tab>
  11. </van-tabs>
  12. </view>