blob: f52b4f0db024ec5baa2194f7e2445ee203ccd545 [file] [log] [blame]
binquan.qiu7f2665f2020-03-27 17:19:57 +08001<view class="container">
2
3 <view class="global-background">
4 <view class="inline-item center" style="margin-top: 50rpx;">
5 <view class="input-desc">
6 手机号
7 </view>
8 <input value="{{phone}}" maxlength="11" placeholder="请输入市民卡预留的手机号" style="width: 70%;" bindinput="setPhone"></input>
9 </view>
10 <view class="inline-item center" style="">
11 <view class="input-desc">
12 验证码
13 </view>
14 <input placeholder="请输入验证码 " type="number" style="width:45%" bindinput="setCode"></input>
15 <view class="authcode center" style="color:{{sendColor}}" bindtap="getCode">
16 {{sendTime}}
17 </view>
18
19 </view>
20 <view class="inline-item" style="margin-top:30rpx;background-color:rgb(240, 240, 240)">
21 <checkbox-group bindchange="checkboxChange">
22 <label>
23 <checkbox value="1" class="checkbox" />我已阅读并同意
24 </label>
25 </checkbox-group>
26
27 <view class="policy" bindtap="showPolicy">《用户协议与隐私条款》</view>
28 </view>
29
30 <button bindtap="doRegister" class="long-btn" style="width: 90%;">注册</button>
31
32 </view>
33</view>