index.wxml 952 B

12345678910111213141516171819202122
  1. <!--pages/search/index.wxml-->
  2. <view class="header">
  3. <view class='search'>
  4. <view class='i_search'>
  5. <image src='{{imgServerUrl}}/images/happyjob/search.png'></image>
  6. </view>
  7. <input class='search-input' type='text' confirm-type="search" value="{{searchVal}}" bindinput='bindKeyInput' bindconfirm="toSearchPage" placeholder="请输入您要找的职位、企业名" auto-focus/>
  8. </view>
  9. <view class='cancel' bindtap='toSearchPage'>搜索</view>
  10. </view>
  11. <view class='history topic'>
  12. <view class='topic-header'>
  13. <view class='history-title'>搜索历史:</view>
  14. <view>
  15. <image src='{{imgServerUrl}}/images/happyjob/del.png' bindtap='delHistory'></image>
  16. </view>
  17. </view>
  18. <view class='record-list'>
  19. <view class='record' wx:for="{{searchKey}}" wx:key="{{item.id}}" data-id="{{item.id}}" data-value="{{item.searchVal}}" bindtap='selectMsg' bindlongpress="delHistory">{{item.searchVal}}</view>
  20. </view>
  21. </view>