itemmyLikePublisher.wxml 607 B

1234567891011
  1. <!-- 为消息-我的消息里通知的组件,组件中数据来自data:newNewsData.js -->
  2. <view class="card" catchtap="getPublisherInfo">
  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="line divider-color"></view>
  11. </view>