1234567891011121314151617181920212223 |
- <!--pages/childMatch/childMatch.wxml-->
- <view class="child-container">
- <view class="search-child">
- <image class="icon" src="../../static/image/search.png"></image>
- <input placeholder="输入关键字" bindinput="focus"/>
- </view>
- <scroll-view scroll-y style="height: 92%; overflow: hidden;" bindscrolltolower="onBottom">
- <view class="photo">
- <view class="img" bindtap="album" id="{{item.user.id}}" wx:for="{{photoBoxList}}" wx:key="{{index}}" data-index="{{index}}">
- <!-- <image src="{{item.cover}}" class="crown" mode='aspectFill'></image> -->
- <image src="{{item.cover}}" style="background: skyblue;" mode='aspectFill'></image>
- <image wx:if="{{index < 3}}" src="../../static/image/huangguan.png" class="crown"></image>
- <view class="ticket">{{item.user.likeCount}}赞</view>
- <view class="child-name">{{item.user.nickName}}</view>
- </view>
- </view>
- </scroll-view>
- <view class="no-find" hidden="{{hiddenFlag}}">
- <text>没有找到相关的内容</text>
- <text>换个关键字再试试吧</text>
- </view>
- </view>
|