childMatch.wxml 1.2 KB

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