myFollow.wxml 1023 B

1234567891011121314151617181920212223
  1. <!-- 为消息的导航栏 两个component界面:“关注动态”followNews “我的消息”myNews-->
  2. <view class="nav default-primary-color">
  3. <view id="0" class="{{currentTab == 0?'select text-primary-color':'normal secondary-text-color'}}" bindtap="switchNav">收藏信息</view>
  4. <view class="line dark-primary-color-font">|</view>
  5. <view id="1" class="{{currentTab == 1?'select text-primary-color':'normal secondary-text-color'}}" bindtap="switchNav">组织/社团</view>
  6. </view>
  7. <swiper current="{{currentTab}}" style="height:{{winHeight-48}}px" bindchange="updatePage">
  8. <swiper-item>
  9. <scroll-view scroll-y="true" style="height: 100%;">
  10. <myLikeMessage></myLikeMessage>
  11. </scroll-view>
  12. </swiper-item>
  13. <swiper-item>
  14. <scroll-view scroll-y="true" style="height: 100%;">
  15. <myLikePublisher></myLikePublisher>
  16. </scroll-view>
  17. </swiper-item>
  18. <swiper-item>
  19. <scroll-view scroll-y="true" style="height: 100%;">
  20. <users></users>
  21. </scroll-view>
  22. </swiper-item>
  23. </swiper>