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