sociology.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="content" >
  2. <view class="header">
  3. <view class="top">
  4. <image class="c_img" src="/images/icons/hsay.png"></image>
  5. <view class="top_right">
  6. <view class="c_name">沪上阿姨</view>
  7. <view class="desc">茶饮连锁品牌</view>
  8. </view>
  9. </view>
  10. <view class="bottom">
  11. <view class="search_group">
  12. <icon type="search" class="icon_search" color="#c2c6da"></icon>
  13. <input type="text" placeholder="请输入职位" confirm-type="search"
  14. bindconfirm="searchContents"
  15. placeholder-class="input_text" bindinput="inputFocus" class="search_input" maxlength="30" value="{{searchinput}}"/>
  16. <icon type="clear" class="icon_clear" color="#c2c6da" wx:if="{{showClear}}" bindtap="clearInput"></icon>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="info" bindtap="goToInfo" data-id="{{item.id}}" wx:for="{{recruitList}}">
  21. <view class="info_top">
  22. <view class="info_top_left">{{item.name}}</view>
  23. <view class="info_top_right">{{item.salary}}</view>
  24. </view>
  25. <view class="info_mid">
  26. <view class="info_mid_left">
  27. <view>{{item.workArea}}|</view>
  28. <view>{{item.workingHours}}|</view>
  29. <view>{{item.education}}</view>
  30. </view>
  31. <view class="info_mid_right">{{item.releaseTime}}</view>
  32. </view>
  33. <view class="info_bottom">
  34. <image src="/images/icons/depart.png" class="info_bottom_img"></image>
  35. <view class="info_bottom_2">{{item.demandDepartment}}</view>
  36. </view>
  37. </view>
  38. </view>