index.wxml 880 B

12345678910111213141516
  1. <view class="user-msg-box" wx:for="{{list}}" wx:key="index">
  2. <view class="image">
  3. <image wx:if="{{item.headportraiturl}}" src="{{item.headportraiturl}}" mode="aspectFill" />
  4. <image wx:else src="https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/userCenter/userImg.png" mode="aspectFill" />
  5. </view>
  6. <view class="content">
  7. <view style="display: flex;">
  8. <view class="u-line-1" style="max-width: 250rpx;">{{item.fname}}</view>{{item.fphonenumber!=null?'-'+item.fphonenumber:''}}
  9. </view>
  10. <view class="time">{{item.createdate}}</view>
  11. </view>
  12. </view>
  13. <view class="even-more" wx:if="{{item&&list.length==10}}" bindtap="viewMore">
  14. 更多浏览
  15. <image style="width: 22rpx; height: 24rpx; margin-left: 8rpx;" src="https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/analysis/more.png" />
  16. </view>