authenticationDetail.wxml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!--pages/authenticationDetail/authenticationDetail.wxml-->
  2. <!-- 顶部信息 -->
  3. <view class="userInfo">
  4. <view>
  5. <text>用户ID</text>
  6. <text class="userDetail">20230105</text>
  7. </view>
  8. <view class="userName">
  9. <text>贵姓</text>
  10. <text class="userDetail">赵</text>
  11. </view>
  12. </view>
  13. <view class="userInfo">
  14. <view>
  15. <text>手机号</text>
  16. <text class="userDetail">13440010000</text>
  17. </view>
  18. <view class="userName">
  19. <text>英文名</text>
  20. <text class="userDetail">zhao</text>
  21. </view>
  22. </view>
  23. <view class="userInfo">
  24. <text>微信号</text>
  25. <text class="userDetail">13440010000</text>
  26. </view>
  27. <view class="userInfo">
  28. <text>身份证号</text>
  29. <text class="userDetail">123456789123456789</text>
  30. </view>
  31. <!-- 照片信息 -->
  32. <view class="userImg">
  33. <view class="userImgDetail">
  34. <image class="userImage" src="../../images/zly.jpeg"></image>
  35. </view>
  36. <view class="userImgDetail">
  37. <image class="userImage" src="../../images/zly.jpeg"></image>
  38. </view>
  39. <view class="userImgDetail">
  40. <image class="userImage" src="../../images/zly.jpeg"></image>
  41. </view>
  42. <view class="userImgDetail">
  43. <image class="userImage" src="../../images/zly.jpeg"></image>
  44. </view>
  45. </view>
  46. <!-- 高校信息 -->
  47. <view class="school">
  48. <text>高校全名</text>
  49. <text class="schoolName">四川大学</text>
  50. </view>
  51. <!-- 教员性别和专业 -->
  52. <view class="teacherSexMajor">
  53. <view>
  54. <text>教员性别</text>
  55. <text class="userDetail">女</text>
  56. </view>
  57. <view class="teacherMajor">
  58. <text>专业</text>
  59. <text class="userDetail">计算机科学与技术</text>
  60. </view>
  61. </view>
  62. <!-- 籍贯 -->
  63. <view class="userInfo">
  64. <text>籍贯</text>
  65. <text class="userDetail">四川省成都市高新区</text>
  66. </view>
  67. <!-- 当前学历 -->
  68. <view class="userInfo">
  69. <text>当前学历</text>
  70. <text class="userDetail">本科</text>
  71. </view>
  72. <!-- 审核状态 -->
  73. <view class="audit">
  74. <text>审核状态</text>
  75. <text class="auditDetail">不通过</text>
  76. </view>
  77. <!-- 审核不通过原因 -->
  78. <view class="auditResult">
  79. <text>审核不通过原因</text>
  80. <text class="auditDetail">没传照片</text>
  81. </view>
  82. <!-- 申请日期 -->
  83. <view class="applyDate">
  84. <text>申请日期</text>
  85. <text class="userDetail">2023-01-05</text>
  86. </view>
  87. <!-- 修改认证按钮 -->
  88. <view class="modify">
  89. <text class="modifyBtn">修改认证</text>
  90. </view>