| 1234567891011121314151617181920212223 |
- <!-- 为消息的导航栏 两个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%;">
- <myLikeMessage></myLikeMessage>
- </scroll-view>
- </swiper-item>
- <swiper-item>
- <scroll-view scroll-y="true" style="height: 100%;">
- <myLikePublisher></myLikePublisher>
- </scroll-view>
- </swiper-item>
- <swiper-item>
- <scroll-view scroll-y="true" style="height: 100%;">
- <users></users>
- </scroll-view>
- </swiper-item>
- </swiper>
|