newUser.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!--pages/newUser/newUser.wxml-->
  2. <view style="font-size:25px; font-weight:600;margin-left: 10px;margin-top: 10px;">完善信息</view>
  3. <view style="font-size:small; color:gray;margin-left: 10px; margin-top: 5px;">请填写以下个人信息</view>
  4. <view style="margin-top: 30px;">
  5. <van-cell-group>
  6. <van-field
  7. label="姓名"
  8. value="{{ value }}"
  9. placeholder="请输入姓名"
  10. bind:change="onChange"
  11. required
  12. />
  13. </van-cell-group>
  14. <van-cell-group>
  15. <van-field
  16. label="手机号"
  17. value="{{ value }}"
  18. placeholder="请输入手机号"
  19. bind:change="onChange"
  20. required
  21. />
  22. </van-cell-group>
  23. <van-cell-group>
  24. <van-field
  25. label="身份证号"
  26. value="{{ value }}"
  27. placeholder="请输入身份证号"
  28. bind:change="onChange"
  29. required
  30. />
  31. </van-cell-group>
  32. <view class="b" >
  33. <view class="a">请选择身份</view>
  34. <van-dropdown-menu active-color=" #6495ED">
  35. <van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" />
  36. </van-dropdown-menu>
  37. </view>
  38. <van-cell-group>
  39. <van-field
  40. label="学校"
  41. value="{{ value }}"
  42. placeholder="请填写学校全称"
  43. bind:change="onChange"
  44. />
  45. </van-cell-group>
  46. <view class="b">
  47. <view class="a">入学时间</view>
  48. <van-cell class="c" title="请选择日期" value="{{ date }}" bind:click="onDisplay" />
  49. <van-calendar show="{{ show }}" bind:close="onClose" bind:confirm="onConfirm" />
  50. </view>
  51. <view class="b" >
  52. <view class="a">专业</view>
  53. <van-dropdown-menu active-color=" #6495ED">
  54. <van-dropdown-item value="{{ value2 }}" options="{{ option2 }}" />
  55. </van-dropdown-menu>
  56. </view>
  57. <view class="b" style="margin-bottom: 100px;">
  58. <view class="a">美食偏好</view>
  59. <van-dropdown-menu active-color=" #6495ED">
  60. <van-dropdown-item value="{{ value3 }}" options="{{ option3 }}" />
  61. </van-dropdown-menu>
  62. </view>
  63. </view>
  64. <van-button type="primary" block round color="#CDC9C9" >提交</van-button>