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.
 

36 lines
2.1 KiB

<!--pages/user/bindtel/index.wxml-->
<view>
<title-header title="{{regToken?'绑定':'更换'}}手机号"></title-header>
<view class="bind-box">
<view class="bind-item">
<view class="bind-item-left">手机号</view>
<input type="number" bindinput="telInput" class="weui-input" auto-focus placeholder="请输入手机号" />
</view>
<view class="bind-item" wx:if="{{imgCodeInfo}}">
<view class="bind-item-left">图形验证码</view>
<input type="number" bindinput="picCodeInput" class="weui-input" placeholder="请输入图形验证码" />
<image lazy-load bindtap="changeImgCode" class="code-img" src="{{imgCodeInfo.code}}" mode="aspectFill"></image>
<!-- <input bindinput="telInput" class="weui-input" auto-focus placeholder="请输入手机号" /> -->
</view>
<view class="bind-item">
<view class="bind-item-left">验证码</view>
<input type="number" bindinput="codeInput" class="weui-input" placeholder="请输入验证码" />
<button style="font-size:30rpx;background:#fff;color:#0B898E" type="primary" size="mini" bindtap="getCode">{{buttonText}}</button>
</view>
</view>
<view class="login-tip-box" wx:if="{{regToken}}">
<view class="select-icon" wx:if="{{!isApproval}}" bindtap="changeIsApproval"></view>
<icon class="iconfont icon-gou1" wx:else bindtap="changeIsApproval"></icon>
<view>
<text>选中代表您已阅读同意</text>
<navigator class="navigator-file" url="/pages/user/userPrivacy/index?id=9">《君到苏州用户协议》</navigator>
<navigator class="navigator-file" url="/pages/user/userPrivacy/index?id=12">《君到苏州隐私政策》</navigator>
<navigator class="navigator-file" url="/pages/user/userPrivacy/index?id=14">《君到苏州第三方共享信息清单》</navigator>
</view>
</view>
<view class="btn" bindtap="submit">{{regToken?'绑定':'保存修改'}}</view>
<button wx:if="{{regToken}}" type="default" bindtap="cancel">取消</button>
<!-- <button class="btn" type="primary" bindtap="submit"></button> -->
</view>