index.wxml 767 B

123456789101112131415161718
  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}}" data-key="searchText" class='search-input' focus="{{focus}}" />
  7. </view>
  8. </view>
  9. <view class='hot-search'>
  10. <view class='hot-search-title'>
  11. <text class='hot-search-title-txt'>热门搜索</text>
  12. </view>
  13. <view class='hot-tag'>
  14. <text wx:for="{{keyword}}" wx:key="{{index}}" bindtap='keywordSearch' data-keyword='{{item.dataValue}}' class='hot-tag-item'>{{item.dataValue}}</text>
  15. </view>
  16. </view>
  17. </view>