itemmyNews.wxml 676 B

123456789101112
  1. <!-- 为消息-我的消息里通知的组件,组件中数据来自data:newNewsData.js -->
  2. <view class="card">
  3. <view class="profile">
  4. <image class="publisherAvatar" src="{{item.publisherAvatar}}" mode="aspectFill" data-publisher-id="{{item.publisherID}}" bindtap="getPublisherInfo"/>
  5. <view class="publisherName dark-primary-color-font" wx:if="{{item.publishType=='回复'}}">
  6. <text style="font-weight:800">{{item.publisherName}}</text><text>对您的问题进行了回复</text>
  7. </view>
  8. </view>
  9. <view class="title">{{item.title}}</view>
  10. <view class="subTitle">{{item.subTitle}}</view>
  11. <view class="line divider-color"></view>
  12. </view>