itemmyNews.wxml 885 B

123456789101112131415161718
  1. <!-- 为消息-我的消息里通知的组件,组件中数据来自data:newNewsData.js -->
  2. <view class="card">
  3. <view class="top">
  4. <view class="profile" wx:if="{{item.publishType == '回复'}}">
  5. <text class="primary-text-color" style="font-size: 24rpx;">
  6. <text class="publisher-name" style="color: #000000;">{{item.publisherName}}</text>对您的评论进行了回复
  7. </text>
  8. </view>
  9. <view class="profile" wx:if="{{item.publishType == '动态'}}">
  10. <text class="primary-text-color" style="font-size: 24rpx;">您收藏的信息 <text class="publisher-name"
  11. style="color: #000000;">{{item.publisherName}}</text> 有新动态</text>
  12. </view>
  13. <text class="primary-text-color detail">查看</text>
  14. </view>
  15. <view class="bottom">
  16. <view class="title secondary-text-color">{{item.title}}</view>
  17. </view>
  18. </view>