纸通宝SAAS仓库
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.
 

25 lines
1.5 KiB

<!--pages/home/mobile/index.wxml-->
<cu-custom isBack="{{true}}">
<view slot="content" style="color:black;font-size:18px">修改手机号码</view>
</cu-custom>
<view style="padding: 48rpx 30rpx;font-size:16px;text-align: center">{{mobile ? '当前手机号码:' + mobile : '您还没有绑定手机号码'}}</view>
<view style="padding:0rpx 30rpx;margin-top:10rpx">
<view class="cu-form-group margin-top" style="min-height:120rpx;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="min-height:120rpx;padding:0rpx;border-bottom: 1px solid #eee">
<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>