search.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!-- 搜索框 -->
  2. <view class="hmly-search">
  3. <view class="hmly-search-left">
  4. <text class="icon-search"></text>
  5. <input placeholder="搜索你想听的节目"></input>
  6. </view>
  7. <view class="hmly-search-right">取消</view>
  8. </view>
  9. <!-- 搜索历史 -->
  10. <view class="hmly-history">
  11. <!-- 提示标题 -->
  12. <view class="hmly-title">
  13. <view class="hmly-title-text">搜索历史</view>
  14. <text class="icon-delete text-gray"></text>
  15. </view>
  16. <!-- 内容 -->
  17. <view class="hmly-history-content">
  18. <view class="hmly-content-item bg-gray text-black">庆余年</view>
  19. <view class="hmly-content-item bg-gray text-black">德云社</view>
  20. <view class="hmly-content-item bg-gray text-black">评书</view>
  21. <view class="hmly-content-item bg-gray text-black">英语</view>
  22. </view>
  23. </view>
  24. <!-- 热门搜索 -->
  25. <view class="hmly-hot">
  26. <!-- 提示标题 -->
  27. <view class="hmly-title">
  28. <view class="title-text">热门搜索</view>
  29. </view>
  30. <view class="hmly-hot-content">
  31. <view class="hmly-hot-items" wx:for="{{hotData}}" wx:key="index">
  32. <view class="hmly-item-left">
  33. <view class="{{index < 3 ? 'text-red' : ''}}">{{index + 1}}</view>
  34. <view class="hmly-item-title text-black">{{item.title}}</view>
  35. </view>
  36. <text class="{{item.icon}} {{item.color}}"></text>
  37. </view>
  38. </view>
  39. </view>