123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!--pages/teachAuthentication/teachAuthentication.wxml-->
- <view>
- <view class="input-item">
- <text>手机号*:</text>
- <input class="userInput" type="number" placeholder="请输入手机号" />
- </view>
- <view class="input-item">
- <text>微信号*:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder="请输入微信号" />
- </view>
- <view class="input-item">
- <text>英文名:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的英文名" />
- </view>
- <view class="input-name">
- <text>真实姓名*:</text>
- <view class="input-yourName">
- <text>姓*:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder="请输入姓氏" />
- <text>名*:</text>
- <input class="input-ming" type="text" confirm-type="done" placeholder="请输入名字" />
- </view>
- </view>
- <view class="input-item">
- <text>身份证号*:</text>
- <input class="userInput" type="idcard" maxlength="18" placeholder="请输入您的身份证号码" />
- </view>
- <view class="input-item">
- <text>性别*:</text>
- <input class="userInput" type="text" placeholder="请输入您的性别" />
- </view>
- <view class="idCard">
- <text class="idImag-tit">身份证照片*</text>
- <text class="explain">请上传身份证照片,要求能看清楚证件号码、日期及头像</text>
- <view class="idImagUp">
- <view class="idImag">
- <text class="iconfont icon-tupian"></text>
- <text>身份证正面</text>
- </view>
- <view class="idImag">
- <text class="iconfont icon-tupian"></text>
- <text>身份证背面</text>
- </view>
- </view>
- </view>
- <view class="myCard">
- <text>毕业证/学生证*:</text>
- <text class="iconfont icon-tupian"></text>
- </view>
- <view class="myHead">
- <text>头像:</text>
- <text class="iconfont icon-tupian"></text>
- </view>
- <view class="input-item">
- <text>毕业/就读学校*:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder="请输入学校的全称" />
- </view>
- <view class="input-item">
- <text>所学专业*:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的所学专业" />
- </view>
- <view class="input-item">
- <text>学历*:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder="请输入您的英文名" />
- </view>
- <view class="input-jiguan">
- <text>籍贯*:</text>
- <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:四川" />
- <text>省</text>
- <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:成都" />
- <text>市/州</text>
- <input class="userInput" type="text" confirm-type="done" placeholder-style="font-size:28rpx" placeholder="例:武侯" />
- <text>区/县</text>
- </view>
- </view>
- <button class="submit" type="primary">提交审核</button>
|