user-info.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <view class='group'>
  2. <view class='extra'>
  3. <image wx:if="{{avatar}}" class='avatar' src='{{avatar}}' bindtap='changeImg'></image>
  4. <image class='default' wx:else src='{{imgServerUrl}}/images/happyjob/photoslice.png'></image>
  5. </view>
  6. <text>靓照,一份好工作的开始</text>
  7. </view>
  8. <view class='list'>
  9. <text>姓名</text>
  10. <view >
  11. <input value="{{ name }}" placeholder="请输入姓名" maxlength='10' bindchange="changeName" />
  12. </view>
  13. </view>
  14. <view class='list'>
  15. <text>性别</text>
  16. <view>
  17. <picker bindchange="bindSexChange" value="{{sex_index}}" range="{{sex}}">
  18. {{sex[sex_index]}}
  19. </picker>
  20. </view>
  21. </view>
  22. <view class='list'>
  23. <text>手机号码</text>
  24. <view>
  25. <input value="{{ iphone }}" placeholder="请输入手机号" maxlength='11' bindchange="changeIphone" />
  26. </view>
  27. </view>
  28. <view class='list'>
  29. <text>出生年份</text>
  30. <view>
  31. <picker mode="date" fields="year" value="{{year}}" end="{{endDate}}" start="1900" bindchange="changeYear">
  32. {{year}}
  33. </picker>
  34. </view>
  35. </view>
  36. <view class='list'>
  37. <text>最高学历</text>
  38. <view>
  39. <picker bindchange="bindPickerChange" value="{{eduIndex}}" range="{{eduList}}">
  40. {{eduList[eduIndex]}}
  41. </picker>
  42. </view>
  43. </view>
  44. <form bindsubmit="submit" report-submit='true' class="btn-group fixed-footer">
  45. <button class="distance selfBtn" form-type="submit">保存</button>
  46. </form>