You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.6 KiB

<view class="container">
<view class="form-top">
<image src="/images/identify/identify.png" mode="widthFix" class="indetify-logo"></image>
<view class="slogan">
<view class="s1">即刻加入 认证专区</view>
<view class="s2">为您的合法权益保驾护航</view>
</view>
</view>
<view class="form-item">
<view><text>姓名</text></view>
<input class="input" type="text" placeholder="请输入真实姓名" bindinput="onNameInput"/>
</view>
<view class="form-item">
<view><text>身份</text></view>
<view>
<!-- <radio-group class="radio-group" bindchange="onIdentityChange">
<label><radio value="student" checked="true" color="#444"/> 学生 </label>
<label><radio value="teacher" checked="false" color="#444"/> 教师 </label> -->
<radio-group bindchange="onIdentifyChange">
<label class="radio-label">
<radio value="student" checked="{{IsStudentify}}" color="#444"> 学生 </radio>
</label>
<label class="radio-label">
<radio value="teacher" color="#444"> 教师 </radio>
</label>
<!-- 可以添加其他身份的单选按钮 -->
</radio-group>
</view>
</view>
<view class="form-item">
<view><text>学校</text></view>
<input class="input" type="text" placeholder="请输入学校全称" bindinput="onSchoolInput"/>
</view>
<view class="form-item">
<view><text>学工号</text></view>
<input class="input" type="text" placeholder="请输入学工号" bindinput="onStudentIDInput"/>
</view>
<button class="auth-button" bindtap="onAuth">一键认证</button>
</view>