58 lines
2.9 KiB
Plaintext
58 lines
2.9 KiB
Plaintext
<view class="page">
|
|
<view class="page__bd">
|
|
<view class="loginFormWrap">
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">姓名</view>
|
|
<input class="weui-input" placeholder="请输入姓名" placeholder-class="placeholderStyle" bindinput="nameInput" value="{{userinfo.name}}"/>
|
|
</view>
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">性别</view>
|
|
<picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}" style="width: 100%;">
|
|
<view class="picker">
|
|
{{array[index]}}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<!--
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">年龄</view>
|
|
<input class="weui-input" type="number" placeholder="请输入年龄" maxlength="3" placeholder-class="placeholderStyle" bindinput="ageInput" />
|
|
</view>
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">联系电话</view>
|
|
<input class="weui-input" placeholder="请输入联系电话" maxlength="11" placeholder-class="placeholderStyle" bindinput="phoneChange" />
|
|
</view>
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">身份证号</view>
|
|
<input class="weui-input" placeholder="请输入身份证号" maxlength="18" placeholder-class="placeholderStyle" bindinput="numberChange" value="{{userinfo.ID_number1}}"/>
|
|
</view>
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">单位名称</view>
|
|
<input class="weui-input" placeholder="请输入单位名称" placeholder-class="placeholderStyle" bindinput="deptChange" value="{{userinfo.companyname}}"/>
|
|
</view>
|
|
<view class="weui-flex loginItem">
|
|
<view class="loginLabel" style="flex-shrink:0">职务</view>
|
|
<input class="weui-input" placeholder="请输入职称/职务" placeholder-class="placeholderStyle" bindinput="postChange" value="{{userinfo.title}}"/>
|
|
</view>
|
|
-->
|
|
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{if_checked}}" class="weui-btn loginBtn" bindtap="tijiao">提交</view>
|
|
<view wx:else class="weui-btn loginBtn" bindtap="clickdenglu">提交</view>
|
|
</view>
|
|
<view class="weui-footer weui-footer_fixed-bottom">
|
|
<view style="display: flex;justify-content: center;">
|
|
<view class="ceheckedIcon" bindtap="checkedChange">
|
|
<icon wx:if="{{if_checked}}" class="icon-small" type="success_no_circle" size="16"></icon>
|
|
</view>
|
|
我已阅读并同意
|
|
<navigator url="/pages/protocol/index">
|
|
<view>《用户服务协议》</view>
|
|
</navigator>和
|
|
<navigator url="/pages/protocol/Privacy">
|
|
<view>《隐私政策》</view>
|
|
</navigator>
|
|
</view>
|
|
<view class="weui-footer__text">Copyright © 2020-2022 国检集团</view>
|
|
</view> |