| 1234567891011121314151617 |
- <!-- 为消息的导航栏 两个component界面:“关注动态”followNews “我的消息”myNews-->
- <!-- 修改:将关注动态转移到首页,消息页面删除导航栏-->
- <view class="page">
- <view wx:if="{{hasUserInfo}}">
- <view wx:if="{{notificationDatas.length}}">
- <view class="card" wx:for="{{notificationDatas}}" wx:for-item="item" wx:key="_id">
- <itemNotification item="{{item}}" />
- </view>
- </view>
- <view wx:else class="title primary-text-color" style="text-align: center;">
- 这里空空如也
- </view>
- </view>
- <view wx:else class="title primary-text-color" style="text-align: center;">
- 请先登录
- </view>
- </view>
|