index.wxml 781 B

12345678910111213141516171819
  1. <!--pages/yuezhan/search/index.wxml-->
  2. <view class='container'>
  3. <view class='search-bar'>
  4. <view class='search-wrapper'>
  5. <text class='iconfont icon-sousuo fix-icon-search' bindtap='searchByText'></text>
  6. <input placeholder="输入关键词" bindconfirm="searchByText" bindinput="bindInput" value="{{searchText}}"
  7. data-key="searchText" class='search-input' focus="{{focus}}" />
  8. </view>
  9. </view>
  10. <view class='hot-search'>
  11. <view class='hot-search-title'>
  12. <text class='hot-search-title-txt'>热门搜索</text>
  13. </view>
  14. <view class='hot-tag'>
  15. <text wx:for="{{keyword}}" wx:key="{{index}}" bindtap='keywordSearch' data-keyword='{{item.dataValue}}'
  16. class='hot-tag-item'>{{item.dataValue}}</text>
  17. </view>
  18. </view>
  19. </view>