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