index.wxml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <wxs src="../tools.wxs" module="globalTools"></wxs>
  2. <view class='list'>
  3. <text>期望岗位(多选):</text>
  4. <view class="list-content">
  5. <!-- <picker bindchange="changeName" value="{{expectationPositionIndex}}" range="{{expectationPosition}}"> -->
  6. <view class="picker" bindtap="changeCover" data-type="position">
  7. <view class="pick-view">
  8. <block wx:if='{{expectationPositionIndex.length}}'>
  9. <view>
  10. <block wx:for="{{expectationPositionIndex}}" wx:key='index'>
  11. <text space="nbsp">{{expectationPosition[item].name}} </text>
  12. </block>
  13. </view>
  14. </block>
  15. <block wx:else>
  16. <text>请选择</text>
  17. </block>
  18. </view>
  19. <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
  20. </view>
  21. </view>
  22. </view>
  23. <view class='list'>
  24. <text>期望地点:</text>
  25. <view class="list-content" bindtap="bindRegionChange">
  26. <!-- <picker mode="region" bindchange="bindRegionChange" value="{{region}}" custom-item="{{customItem}}"> -->
  27. <view wx:if='{{region.value.length}}' class="picker" data-type="address">
  28. <text>{{region.value[0]}},{{region.value[1]}},{{region.value[2]}}</text>
  29. </view>
  30. <text wx:else>请选择</text>
  31. <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
  32. </view>
  33. </view>
  34. <view class='list'>
  35. <text>期望薪资:</text>
  36. <view class="list-content" bindtap="changeSalary">
  37. <!-- <view bindtap="changeCover" value="{{salaryIndex}}" range="{{salaryList}}" range-key='hightNum'> -->
  38. <view wx:if='{{salaryIndex}}' data-type="salary" class="picker">
  39. <text>{{salaryList[salaryIndex].hightNum}}</text>
  40. </view>
  41. <text wx:else>请选择</text>
  42. <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
  43. </view>
  44. </view>
  45. <form bindsubmit="submit" report-submit='true' class="btn-group fixed-footer">
  46. <button class="distance selfBtn {{disabled?'':'opacity_5'}}" form-type="submit">保存</button>
  47. </form>
  48. <view class="cover" bindtap="changeCover" hidden="{{cover}}"></view>
  49. <picker-view class="salary" style="bottom:{{salary?-650:0}}rpx" indicator-style="height: 50px;" value="{{salaryIndex}}" bindchange="bindSalaryChange">
  50. <view class="cover-title">
  51. <view catchtap="changeCover">取消</view>
  52. <view style="color:#000;">期望薪资</view>
  53. <view catchtap="changeCover">确定</view>
  54. </view>
  55. <picker-view-column>
  56. <view wx:for="{{salaryList}}" style="line-height: 50px" wx:key='index'>{{salaryList[index].hightNum}}</view>
  57. </picker-view-column>
  58. </picker-view>
  59. <view class="position" style="bottom:{{position?-800:0}}rpx">
  60. <view class="cover-title">
  61. <view catchtap="changeCover">取消</view>
  62. <view style="color:#000;">期望岗位(多选)</view>
  63. <view catchtap="changeCover">确定</view>
  64. </view>
  65. <view class="position-content">
  66. <view class="position-content-cell {{item.active&&'active'}}" wx:for='{{expectationPosition}}' wx:key='index' data-index="{{index}}" bindtap="changeName">
  67. {{item.name}}
  68. </view>
  69. </view>
  70. </view>