teachAuthentication.wxml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!--pages/teachAuthentication/teachAuthentication.wxml-->
  2. <view class="teachContainer">
  3. <view class="input-item">
  4. <text>手机号*:</text>
  5. <input class="userInput" type="number" placeholder="请输入手机号" />
  6. </view>
  7. <view class="input-item">
  8. <text>微信号*:</text>
  9. <input class="userInput" type="text" confirm-type="done" placeholder="请输入微信号" />
  10. </view>
  11. <view class="input-item">
  12. <text>英文名:</text>
  13. <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的英文名" />
  14. </view>
  15. <view class="input-name">
  16. <text>真实姓名*:</text>
  17. <view class="input-yourName">
  18. <text>姓*:</text>
  19. <input class="userInput" type="text" confirm-type="done" placeholder="请输入姓氏" />
  20. <text>名*:</text>
  21. <input class="input-ming" type="text" confirm-type="done" placeholder="请输入名字" />
  22. </view>
  23. </view>
  24. <view class="input-item">
  25. <text>身份证号*:</text>
  26. <input class="userInput" type="idcard" maxlength="18" placeholder="请输入您的身份证号码" />
  27. </view>
  28. <view class="input-item">
  29. <text>性别*:{{sex}}</text>
  30. </view>
  31. <view class="idCard">
  32. <text class="idImag-tit">身份证照片*</text>
  33. <text class="explain">请上传身份证照片,要求能看清楚证件号码、日期及头像</text>
  34. <view class="idImagUp">
  35. <view class="idImag">
  36. <text class="iconfont icon-tupian"></text>
  37. <text>身份证正面</text>
  38. </view>
  39. <view class="idImag">
  40. <text class="iconfont icon-tupian"></text>
  41. <text>身份证背面</text>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="myCard">
  46. <text>毕业证/学生证*:</text>
  47. <text class="iconfont icon-tupian"></text>
  48. </view>
  49. <view class="myHead">
  50. <text>头像:</text>
  51. <text class="iconfont icon-tupian"></text>
  52. </view>
  53. <view>
  54. <text>身份*:</text>
  55. <text class="teachAttribute">专业老师</text>
  56. </view>
  57. <view class="input-item">
  58. <text>毕业/就读学校*:</text>
  59. <input class="userInput" type="text" confirm-type="done" placeholder="请输入学校的全称" />
  60. </view>
  61. <view class="input-item">
  62. <text>所学专业*:</text>
  63. <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的所学专业" />
  64. </view>
  65. <view class="input-item">
  66. <text>学历*:</text>
  67. <radio-group>
  68. <radio>博士</radio>
  69. <radio>硕士</radio>
  70. <radio>本科</radio>
  71. <radio>大专</radio>
  72. </radio-group>
  73. </view>
  74. <view class="input-jiguan">
  75. <text>籍贯*:</text>
  76. <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:四川" />
  77. <text>省</text>
  78. <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:成都" />
  79. <text>市/州</text>
  80. <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:武侯" />
  81. <text>区/县</text>
  82. </view>
  83. </view>
  84. <button class="submit" type="primary">提交审核</button>