itemmyLikeMessage.wxml 697 B

12345678910111213
  1. <!-- 为消息-关注动态里消息的组件,数据来自data: newMessageData.js-->
  2. <view class="card" catchtap="getActivityInfo">
  3. <view class="profile">
  4. <view class="publisher-name primary-text-color">
  5. <image class="publisher-avatar" src="{{item.publisherAvatar}}" mode="aspectFill" data-publisher-id="{{item.publisherID}}" />
  6. <text style="font-weight:900">{{item.publisherName}}</text>
  7. </view>
  8. <image class="like" src="/images/like/{{like ? 'heart' : 'hollowheart'}}.png" catchtap="toggleLike" />
  9. </view>
  10. <view class="title">{{item.title}}</view>
  11. <view class="sub-title">{{item.subTitle}}</view>
  12. <view class="line divider-color"></view>
  13. </view>