message.wxml 1.1 KB

123456789101112131415161718192021222324
  1. <!-- 为消息的导航栏 两个component界面:“关注动态”followNews “我的消息”myNews-->
  2. <!-- 修改:将关注动态转移到首页,消息页面删除导航栏-->
  3. <view class="nav default-primary-color">
  4. <view id="0" class="{{currentTab == 0?'select text-primary-color':'normal secondary-text-color'}}" bindtap="switchNav">关注者动态</view>
  5. <view class="line dark-primary-color-font">|</view>
  6. <view id="1" class="{{currentTab == 1?'select text-primary-color':'normal secondary-text-color'}}" bindtap="switchNav">我的消息</view>
  7. </view>
  8. <swiper current="{{currentTab}}" style="height:{{winHeight-48}}px" bindchange="updatePage">
  9. <swiper-item>
  10. <scroll-view scroll-y="true" style="height: 100%;">
  11. <followNews></followNews>
  12. </scroll-view>
  13. </swiper-item>
  14. <swiper-item>
  15. <scroll-view scroll-y="true" style="height: 100%;">
  16. <myNews></myNews>
  17. </scroll-view>
  18. </swiper-item>
  19. <swiper-item>
  20. <scroll-view scroll-y="true" style="height: 100%;">
  21. <users></users>
  22. </scroll-view>
  23. </swiper-item>
  24. </swiper>