itemmyNews.wxml 627 B

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