search.wxml 541 B

12345678910111213141516
  1. <template name="search">
  2. <view class="search-container">
  3. <view class="search-video">
  4. <image class="icon" src="../../static/image/search.png"></image>
  5. <input placeholder="输入关键字"/>
  6. </view>
  7. <scroll-view class="scroll-view" scroll-y>
  8. <view class="title">热门搜索</view>
  9. <view class="hot-video">
  10. <view class="hot-item">
  11. {{item}}
  12. </view>
  13. </view>
  14. </scroll-view>
  15. </view>
  16. </template>