index.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!--pages/agent/index.wxml-->
  2. <view class='panel'>
  3. <view class='agent'>
  4. <image class='agent1' src='{{imgServerUrl}}/images/happyjob/agent.png' style='height:{{swiperH}}px' mode='widthFix' bindload='imageLoad'></image>
  5. </view>
  6. <view class='agent_1'>
  7. <image class='agent2' src='{{imgServerUrl}}/images/happyjob/agent2.png' style='height:{{swiperH2}}px' mode='widthFix'></image>
  8. <image class='baoming' src='{{imgServerUrl}}/images/happyjob/baoming.png' bindtap='baoming' data-top="{{basePos}}"></image>
  9. </view>
  10. <view class='agent'>
  11. <image class='agent3' src='{{imgServerUrl}}/images/happyjob/agent3.png' style='height:{{swiperH3}}px' mode='widthFix'></image>
  12. </view>
  13. <view class='agent_4' id="agentJoin">
  14. <image class='agent4' src='{{imgServerUrl}}/images/happyjob/agent4.png' style='height:{{swiperH4}}px' mode='widthFix'></image>
  15. <view class='joinus'>加入我们</view>
  16. <view class='name'>
  17. <view class='left'>姓名:</view>
  18. <view class='right'>
  19. <input value='{{name}}' bindinput='changeName' maxlength='20'></input>
  20. </view>
  21. </view>
  22. <view class='contact'>
  23. <view class='left'>联系方式:</view>
  24. <view class='right'>
  25. <input value='{{contact}}' bindinput='changeContact'></input>
  26. </view>
  27. </view>
  28. <view class='sex'>
  29. <view class='left'>性别:</view>
  30. <view class='right'>
  31. <picker bindchange="bindSexChange" value="{{sex_index}}" range="{{sex}}">
  32. <view class="picker">
  33. {{sex[sex_index]}}
  34. </view>
  35. </picker>
  36. <!-- <input value='{{sex}}' bindinput='changeSex'></input> -->
  37. </view>
  38. </view>
  39. <view class='year'>
  40. <view class='left'>年龄:</view>
  41. <view class='right'>
  42. <input value='{{year}}' bindinput='changeYear' maxlength='2' type="number"></input>
  43. </view>
  44. </view>
  45. <view class='submit' bindtap='submit'>
  46. 提交
  47. </view>
  48. </view>
  49. </view>