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.
28 lines
1.6 KiB
28 lines
1.6 KiB
<!--pages/home/mobile/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content" style="color:black;font-size:18px">修改手机号码</view>
|
|
</cu-custom>
|
|
|
|
<view class="bg-white text-xl" style="padding: 48rpx 30rpx;text-align: center">{{mobile ? '当前手机号码:' + mobile : '您还没有绑定手机号码'}}</view>
|
|
|
|
<view class="bg-white" style="padding:0rpx 30rpx;margin-top:16rpx">
|
|
<view class="cu-form-group margin-top" style="padding:0rpx;">
|
|
<text class="label" style="margin-left:12rpx;margin-right:24rpx">手机号:</text>
|
|
<input id="mobile" maxlength="11" type="number" placeholder="请输入新手机号码" bindinput="bindInput"></input>
|
|
</view>
|
|
<view class="cu-form-group" style="padding:0rpx;">
|
|
<text class="label" style="margin-left:12rpx;margin-right:24rpx">验证码:</text>
|
|
<input id="captcha" type="number" placeholder-style="color:#aaa" maxlength="6" placeholder="请输入验证码" bindinput="bindInput" />
|
|
<van-button size="small" plain type="info" custom-style="width:220rpx" disabled="{{!mobileEnable || !codeEnable}}" bind:click="fetchCode">
|
|
<van-count-down id="count-down" time="{{ 60000 }}" use-slot auto-start="{{false}}" bind:change="onChange" bind:finish="onFinished">
|
|
<text class="text-sm">{{second}}</text>
|
|
</van-count-down>
|
|
</van-button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="flex flex-direction" style="padding:120rpx 32rpx">
|
|
<van-button block type="info" bind:click="submitForm" disabled="{{loginEnable}}">提交</van-button>
|
|
</view>
|
|
|
|
<notification id="qn-notification"/>
|