24 lines
976 B
Plaintext
24 lines
976 B
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">
|
|
<image src="{{serviceUrl + baseImgUrl + photo}}" wx:for="{{item.photo}}" wx:for-item="photo" wx:key="photo" mode="heightFix"></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>
|