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.
|
- <!--pages/mobileVerification/mobileVerification.wxml-->
- <view class="all" >
- <view class="main">
- <image class="bg" src="{{imgUrl+'/star/bg.jpg'}}"></image>
- <view class="msgFrame">
- <view class="titleGroup">
- <image class="mobilepagelogo" src="{{imgUrl+'/images/mobilepagelogo.png'}}"></image>
- <view class="goodsName">启辰</view>
- <view class="goodsText">申请</view>
- </view>
- <view class="inputFrame">
- <view class="inputGroup">
- <view class="mobileFirst">+86</view>
- <image class="mobilepagedown" src="{{imgUrl+'/images/mobilepagedown.png'}}"></image>
- <view class="inputText" style="position: relative;">
- <input class="inputText" bindinput="getMoblie" value="{{mobileText}}" placeholder="手机号" type="number" maxlength='11'></input>
- <button class="getMobileBtn" wx:if="{{getMobileBtnShow}}" open-type="getPhoneNumber" bindgetphonenumber="getPhone" style="width:100%;height:100%;min-height:0;margin:0;padding:0;"></button>
- </view>
- </view>
- <view class="inputGroup" style="justify-content: space-between;margin-top:30rpx;">
- <input class="inputText" bindinput="getCodeText" placeholder="短信验证码"></input>
- <view class="codeSty" bindtap="getCode">{{verificationCode}}</view>
- </view>
- </view>
- <view class="agreementGroup">
- <image class="agreeIcon" bindtap="agreementState" src="{{imgUrl+(isAgreement?'/images/agreeIcon.png':'/images/disagreeIcon.png')}}"></image>
- <view class="agreementText"><view>我仔细阅读并接受所附的</view><view bindtap="agreementControl">《用户协议与隐私政策》</view></view>
- </view>
- <view class="submitBtn" bindtap="submitMobile">提交</view>
- </view>
- </view>
- <agreement bindmyevent="agreementControl" wx:if="{{agreement}}"></agreement>
- <tabBar></tabBar>
- </view>
|