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.
57 lines
2.9 KiB
57 lines
2.9 KiB
<!--pages/user/personalData/index.wxml--> |
|
<view class="personal-index"> |
|
<view class="back-btn" style="top:{{navTopHeight}}rpx" bindtap="backPage"> |
|
<image src="../../../images/back.png" mode=""></image> |
|
</view> |
|
<view class="bg-img-box"><image src="../../../images/personalPage-bg.png"></image></view> |
|
<view class="logo-box acea-row row-column"> |
|
<image src="../../../images/logo.png"></image> |
|
<view>欢迎入驻禅易云生态</view> |
|
</view> |
|
<view class="form-box"> |
|
<view class="title">请完善个人信息</view> |
|
<view class="form"> |
|
<view class="inp-box"> |
|
<view class="label">姓名</view> |
|
<input type="text" placeholder="请填写您的真实姓名" value="{{form.realName}}" bindinput="changeName" placeholder-style="color:#6D6D6D" /> |
|
</view> |
|
<view class="inp-box"> |
|
<view class="label">身份证号</view> |
|
<input type="idcard" placeholder="请填写您的身份证号码" maxlength="18" bindinput="changeidCard" value="{{form.idCard}}" placeholder-style="color:#6D6D6D"/> |
|
</view> |
|
<view class="inp-box"> |
|
<view class="label">手机号</view> |
|
<input type="text" placeholder="请填写您的手机号" value="{{form.phone}}" maxlength="11" bindinput="changePhone" placeholder-style="color:#6D6D6D"/> |
|
<button wx:if="{{form.phone == ''}}" class="getPhone-btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">一键获取</button> |
|
</view> |
|
<view class="inp-box"> |
|
<view class="label">短信验证码</view> |
|
<view class="sencode-box acea-row-nowrap row-between row-middle"> |
|
<input type="text" placeholder="请填写短信验证码" value="{{form.code}}" bindinput="changeCode" maxlength="6" placeholder-style="color:#6D6D6D"/> |
|
<view class="sendcode-btn" wx:if="{{ !disabled }}" bindtap="sendCode">发送验证码</view> |
|
<view class="sendcode-btn default" wx:else>{{ second }}秒后重新发送</view> |
|
</view> |
|
</view> |
|
<view class="inp-box"> |
|
<view class="label">所在城市</view> |
|
<picker mode="region" bindchange="bindRegionChange" value="{{form.city}}"> |
|
<view class="picker"> |
|
{{form.city}} |
|
</view> |
|
</picker> |
|
</view> |
|
<view class="inp-box"> |
|
<view class="label">所在行业</view> |
|
<input type="text" placeholder="请选择" bindtap="toProfession" disabled="disabled" value="{{form.profession}}" placeholder-style="color:#6D6D6D"/> |
|
</view> |
|
<view class="inp-box noBorder"> |
|
<view class="label">所在职位</view> |
|
<picker bindchange="bindPickerChange" value="{{form.position}}" range="{{positionArr}}"> |
|
<view class="picker">{{form.position}}</view> |
|
</picker> |
|
<!-- <input type="text" placeholder="请填写您的职位" placeholder-style="color:#FFE8D8"/> --> |
|
</view> |
|
</view> |
|
<view class="submit-btn" bindtap="toComplete">保存并入驻</view> |
|
</view> |
|
</view>
|
|
|