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