teachAuthentication.wxml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!--pages/teachAuthentication/teachAuthentication.wxml-->
  2. <view>
  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>性别*:</text>
  30. <input class="userInput" type="text" placeholder="请输入您的性别" />
  31. </view>
  32. <view class="idCard">
  33. <text class="idImag-tit">身份证照片*</text>
  34. <text class="explain">请上传身份证照片,要求能看清楚证件号码、日期及头像</text>
  35. <view class="idImagUp">
  36. <view class="idImag">
  37. <text class="iconfont icon-tupian"></text>
  38. <text>身份证正面</text>
  39. </view>
  40. <view class="idImag">
  41. <text class="iconfont icon-tupian"></text>
  42. <text>身份证背面</text>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="myCard">
  47. <text>毕业证/学生证*:</text>
  48. <text class="iconfont icon-tupian"></text>
  49. </view>
  50. <view class="myHead">
  51. <text>头像:</text>
  52. <text class="iconfont icon-tupian"></text>
  53. </view>
  54. <view class="input-item">
  55. <text>毕业/就读学校*:</text>
  56. <input class="userInput" type="text" confirm-type="done" placeholder="请输入学校的全称" />
  57. </view>
  58. <view class="input-item">
  59. <text>所学专业*:</text>
  60. <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的所学专业" />
  61. </view>
  62. <view class="input-item">
  63. <text>学历*:</text>
  64. <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的英文名" />
  65. </view>
  66. <view class="input-jiguan">
  67. <text>籍贯*:</text>
  68. <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:四川" />
  69. <text>省</text>
  70. <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:成都" />
  71. <text>市/州</text>
  72. <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:武侯" />
  73. <text>区/县</text>
  74. </view>
  75. </view>
  76. <button class="submit" type="primary">提交审核</button>