46 lines
2.5 KiB
Plaintext
46 lines
2.5 KiB
Plaintext
<loading wx:if="{{!show}}">加载中...</loading>
|
|
<view class="page" wx:if="{{show}}">
|
|
<view class="fui-cell-group">
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">手机号</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="inputChange" class="fui-input" data-type="mobile" maxlength="11" placeholder="请输入您的手机号" type="number" value="{{postData.mobile}}"></input>
|
|
</view>
|
|
</view>
|
|
<view class="fui-cell must" wx:if="{{smsimgcode==1}}">
|
|
<view class="fui-cell-label">图形验证码</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="inputChange" class="fui-input" data-type="verifyImg" maxlength="5" placeholder="请输入图形验证码" type="number" value="{{postData.verifyImg}}"></input>
|
|
</view>
|
|
<view class="fui-cell-remark noremark">
|
|
<image bindtap="imageChange" src="{{verifycode_img}}"></image>
|
|
</view>
|
|
</view>
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">验证码</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="inputChange" class="fui-input" data-type="code" maxlength="5" placeholder="5位验证码" type="number" value="{{postData.code}}"></input>
|
|
</view>
|
|
<view class="fui-cell-remark noremark">
|
|
<text bindtap="getCode" class="btn btn-default btn-default-o btn-sm {{endtime>0?'disabled':''}}">{{endtime>0?endtime+'秒后重发':'获取验证码'}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">登录密码</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="inputChange" class="fui-input" data-type="password" placeholder="请输入您的登录密码" type="password" value="{{postData.password}}"></input>
|
|
</view>
|
|
</view>
|
|
<view class="fui-cell must">
|
|
<view class="fui-cell-label">确认密码</view>
|
|
<view class="fui-cell-info">
|
|
<input bindinput="inputChange" class="fui-input" data-type="password1" placeholder="请输入确认登录密码" type="password" value="{{postData.password1}}"></input>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view bindtap="submit" class="btn btn-danger block">{{subtext}}</view>
|
|
<view class="fui-toast {{FoxUIToast.show?'in':'out'}}">
|
|
<view class="text">{{FoxUIToast.text}}</view>
|
|
</view>
|
|
</view>
|