| 123456789101112 |
- <!-- 为消息-关注动态里消息的组件,数据来自data: newMessageData.js-->
- <view wx:if="{{show}}" class="card" catchtap="getMessageInfo">
- <view class="profile">
- <view class="publisher-name primary-text-color" catchtap="getPublisherInfo">
- <image class="publisher-avatar" src="{{item.publisher.avatar}}" mode="aspectFill" />
- <text style="font-weight: bold;">{{item.publisher.name}}</text>
- </view>
- <image class="like" src="/images/like/{{like ? 'heart' : 'hollowheart'}}.png" catchtap="toggleLike" />
- </view>
- <view class="title">{{item.name}}</view>
- <view class="sub-title">{{item.brief}}</view>
- </view>
|