itemfollowNews.wxml 632 B

123456789101112
  1. <!-- 为消息-关注动态里消息的组件,数据来自data: newMessageData.js-->
  2. <view class="card" catchtap="getActivityInfo">
  3. <view class="profile">
  4. <view class="publisher-name primary-text-color" catchtap="getPublisherInfo">
  5. <image class="publisher-avatar" src="{{item.publisherAvatar}}" mode="aspectFill" />
  6. <text>你关注的</text><text style="font-weight:800">{{item.publisherName}}</text><text>发布了新消息</text>
  7. </view>
  8. </view>
  9. <view class="title">{{item.title}}</view>
  10. <view class="sub-title">{{item.subTitle}}</view>
  11. <view class="line divider-color"></view>
  12. </view>