notification.wxml 686 B

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