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.
32 lines
876 B
32 lines
876 B
<view class="page"> |
|
<view class="form"> |
|
<view class="row"> |
|
<view class="label">新手机号</view> |
|
<view class="container"> |
|
<input |
|
type="number" |
|
class="input" |
|
model:value="{{mobile}}" |
|
maxlength="11" |
|
placeholder-class="place-input" |
|
placeholder="请输入新手机号" |
|
/> |
|
</view> |
|
</view> |
|
<view class="row"> |
|
<view class="label">验证码</view> |
|
<view class="container"> |
|
<input |
|
type="number" |
|
class="input" |
|
model:value="{{code}}" |
|
maxlength="6" |
|
placeholder-class="place-input" |
|
placeholder="请输入验证码" |
|
/> |
|
<view class="btn" bind:tap="getCode">{{codeText}}</view> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="login-out" bind:tap="handleSubmit">提交</view> |
|
</view>
|
|
|