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.
33 lines
1.6 KiB
33 lines
1.6 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>
|
|
|
|
<view class="flex flex-center flex-column" style="width:100%;height:320rpx;margin-top:80rpx">
|
|
<image style="width:192rpx;height:192rpx" src="/assets/image/ygImg.png"></image>
|
|
<view class="text-xl" wx:if="{{customerInfo}}">{{customerInfo.name}}</view>
|
|
</view>
|
|
|
|
<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="mobile" maxlength="11" disabled="true" 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="captcha" maxlength="6" type="number" placeholder="请输入验证码" bindinput="bindForm"></input>
|
|
</view>
|
|
<van-button size="small" plain type="info" custom-style="width:220rpx" disabled="{{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:80rpx 32rpx">
|
|
<van-button block type="info" loading="{{loging}}" loading-text="提交..." bind:click="submitForm">提交</van-button>
|
|
</view>
|