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.
26 lines
1.3 KiB
26 lines
1.3 KiB
<!--pages/home/password/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content" style="color:black;font-size:18px">更换手机号码</view>
|
|
</cu-custom>
|
|
|
|
<wux-alert theme="positive" title="更换手机号码后,下次登录可以使用新手机号码登录。当前手机号码:{{mobile}}" />
|
|
|
|
<view class="cu-list menu no-card sm-border margin-top">
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">手机号:</view>
|
|
<input id="newMobile" maxlength="11" type="number" value="{{form.mobile}}" placeholder="请输入新手机号码" bindinput="bindForm"></input>
|
|
</view>
|
|
</view>
|
|
<view class="cu-item">
|
|
<view class="flex content cu-item" style="font-size:28rpx">
|
|
<view style="min-width:170rpx">验证码:</view>
|
|
<input id="verifyCode" maxlength="6" type="number" placeholder="请输入验证码" bindinput="bindForm"></input>
|
|
</view>
|
|
<wux-button outline type="positive" size="code" disabled="{{!codeEnable}}" bind:click="fetchCode">{{ second || '获取验证码' }}</wux-button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="flex flex-direction" style="padding:80rpx 32rpx">
|
|
<wux-button block type="positive" bind:click="submitForm">{{first ? '下一步' : '提交'}}</wux-button>
|
|
</view>
|