syshxcx/pages/neighbor/help/helpList.wxml
dong_bo0602 c7f6c43f46 0609
2022-06-09 15:40:43 +08:00

30 lines
1.5 KiB
Plaintext

<view class="help-container">
<view class="help-box" bindtap="checkHelpDetail" wx:for="{{helpList}}" wx:key="index" data-id="{{item.neighborId}}">
<view class="help-user">
<image src="{{item.headPortrait}}"></image>
<view class="user-name-time">
<view class="user-name">{{item.nickName}}</view>
<view class="user-time">{{item.gmtCreate}}</view>
</view>
</view>
<view class="help-content">
{{item.content}}
</view>
<view class="help-photo" wx:if="{{item.photo.length > 0}}">
<view class="help-photo-box photo-one" wx:for="{{item.photo}}" wx:for-item="photo" wx:key="photo" wx:if="{{item.photo.length == 1}}">
<image src="{{serviceUrl + baseImgUrl + photo}}" mode="widthFix"></image>
</view>
<view class="help-photo-box photo-four" wx:for="{{item.photo}}" wx:for-item="photo" wx:key="photo" wx:if="{{item.photo.length == 4}}">
<image src="{{serviceUrl + baseImgUrl + photo}}" mode="widthFix"></image>
</view>
<view class="help-photo-box photo-more" wx:for="{{item.photo}}" wx:for-item="photo" wx:key="photo" wx:if="{{item.photo.length > 1 && item.photo.length != 4}}">
<image src="{{serviceUrl + baseImgUrl + photo}}" mode="widthFix"></image>
</view>
</view>
<view class="help-video" wx:if="{{item.video}}">
<video src="{{serviceUrl + baseImgUrl + item.video}}"></video>
</view>
</view>
</view>
<view class="load-more" bindtap="loadMore" wx:if="{{haveMore}}">加载更多</view>