| 12345678910111213141516171819 |
- <!-- 为消息-我的消息里通知的组件,组件中数据来自data:newNewsData.js -->
- <view class="card">
- <view class="top">
- <view class="profile" wx:if="{{item.type === '回复'}}">
- <text class="primary-text-color" style="font-size: 24rpx;">
- <text class="publisher-name" style="color: #000000;">{{item.message.publisher.name}}</text> 对您的评论进行了回复
- </text>
- </view>
- <view class="profile" wx:if="{{item.type === '动态'}}">
- <text class="primary-text-color" style="font-size: 24rpx;">您收藏的信息 <text class="publisher-name"
- style="color: #000000;">{{item.message.name}}</text> 有新动态</text>
- </view>
- <text class="primary-text-color detail" bindtap="getMessageInfo">查看</text>
- </view>
- <view class="bottom">
- <view class="text secondary-text-color {{ellipsis ? 'ellipsis' : 'unellipsis'}}">{{item.content}}</view>
- <view class="detail primary-text-color" bindtap="toggleEllipsis">{{ellipsis ? '展开' : '收起'}}</view>
- </view>
- </view>
|