search.wxml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!--pages/home/search/search.wxml-->
  2. <import src="/pages/home/public/public.wxml"/>
  3. <scroll-view class="bg-scroll-view" scroll-y>
  4. <view class="top">
  5. <template is="search-view" data="{{...search}}"/>
  6. <view class="cancel" bindtap="backpage">取消</view>
  7. </view>
  8. <!-- 无关键词默认搜索 -->
  9. <!-- <block wx:if="{{issearch}}">
  10. <view class="recommend">
  11. <view wx:for="{{recommend}}" wx:key="{{index}}" class="recommend-item">
  12. <image src="{{item.img}}"></image>
  13. <text>{{item.name}}</text>
  14. </view>
  15. </view>
  16. <view class="hot-search">
  17. <view>热门搜索</view>
  18. <view>
  19. <view class="hot-tips" wx:for="{{hotSearch}}" data-name="{{item}}" wx:key="{{index}}">{{item}}</view>
  20. </view>
  21. </view>
  22. <view class="region-title">常见问题</view>
  23. <template is="question" data="{{...question}}"/>
  24. </block> -->
  25. <!-- 关键词搜索 -->
  26. <block hidden="{{titltRange.length == 0}}" wx:for="{{titltRange}}" wx:key="{{index}}">
  27. <button open-type="getUserInfo" data-ids="{{item.id}}" data-title="{{item.title}}" bindgetuserinfo="getUserInfo">
  28. <view data-ids="{{item.id}}" class="result-item" bindtap="toproblem">
  29. {{item.title}}
  30. </view>
  31. </button>
  32. </block>
  33. <view hidden="{{titltRange.length != 0}}" class="defaultpage">
  34. <image src="/icon/search/quesheng.png"></image>
  35. <text>暂时找不到您搜索的内容</text>
  36. </view>
  37. </scroll-view>