| 123456789101112131415161718192021222324 |
- <!-- 为消息的导航栏 两个component界面:“关注动态”followNews “我的消息”myNews-->
- <!-- 修改:将关注动态转移到首页,消息页面删除导航栏-->
- <view class="nav default-primary-color">
- <view id="0" class="{{currentTab == 0?'select text-primary-color':'normal secondary-text-color'}}" bindtap="switchNav">关注者动态</view>
- <view class="line dark-primary-color-font">|</view>
- <view id="1" class="{{currentTab == 1?'select text-primary-color':'normal secondary-text-color'}}" bindtap="switchNav">我的消息</view>
- </view>
- <swiper current="{{currentTab}}" style="height:{{winHeight-48}}px" bindchange="updatePage">
- <swiper-item>
- <scroll-view scroll-y="true" style="height: 100%;">
- <followNews></followNews>
- </scroll-view>
- </swiper-item>
- <swiper-item>
- <scroll-view scroll-y="true" style="height: 100%;">
- <myNews></myNews>
- </scroll-view>
- </swiper-item>
- <swiper-item>
- <scroll-view scroll-y="true" style="height: 100%;">
- <users></users>
- </scroll-view>
- </swiper-item>
- </swiper>
|