12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!--pages/authenticationDetail/authenticationDetail.wxml-->
- <!-- 顶部信息 -->
- <view class="userInfo">
- <view>
- <text>用户ID</text>
- <text class="userDetail">20230105</text>
- </view>
- <view class="userName">
- <text>贵姓</text>
- <text class="userDetail">赵</text>
- </view>
- </view>
- <view class="userInfo">
- <view>
- <text>手机号</text>
- <text class="userDetail">13440010000</text>
- </view>
- <view class="userName">
- <text>英文名</text>
- <text class="userDetail">zhao</text>
- </view>
- </view>
- <view class="userInfo">
- <text>微信号</text>
- <text class="userDetail">13440010000</text>
- </view>
- <view class="userInfo">
- <text>身份证号</text>
- <text class="userDetail">123456789123456789</text>
- </view>
- <!-- 照片信息 -->
- <view class="userImg">
- <view class="userImgDetail">
- <image class="userImage" src="../../images/zly.jpeg"></image>
- </view>
- <view class="userImgDetail">
- <image class="userImage" src="../../images/zly.jpeg"></image>
- </view>
- <view class="userImgDetail">
- <image class="userImage" src="../../images/zly.jpeg"></image>
- </view>
- <view class="userImgDetail">
- <image class="userImage" src="../../images/zly.jpeg"></image>
- </view>
- </view>
- <!-- 高校信息 -->
- <view class="school">
- <text>高校全名</text>
- <text class="schoolName">四川大学</text>
- </view>
- <!-- 教员性别和专业 -->
- <view class="teacherSexMajor">
- <view>
- <text>教员性别</text>
- <text class="userDetail">女</text>
- </view>
- <view class="teacherMajor">
- <text>专业</text>
- <text class="userDetail">计算机科学与技术</text>
- </view>
- </view>
- <!-- 籍贯 -->
- <view class="userInfo">
- <text>籍贯</text>
- <text class="userDetail">四川省成都市高新区</text>
- </view>
- <!-- 当前学历 -->
- <view class="userInfo">
- <text>当前学历</text>
- <text class="userDetail">本科</text>
- </view>
- <!-- 审核状态 -->
- <view class="audit">
- <text>审核状态</text>
- <text class="auditDetail">不通过</text>
- </view>
- <!-- 审核不通过原因 -->
- <view class="auditResult">
- <text>审核不通过原因</text>
- <text class="auditDetail">没传照片</text>
- </view>
- <!-- 申请日期 -->
- <view class="applyDate">
- <text>申请日期</text>
- <text class="userDetail">2023-01-05</text>
- </view>
- <!-- 修改认证按钮 -->
- <view class="modify">
- <text class="modifyBtn">修改认证</text>
- </view>
|