东风启辰小程序端
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.

35 lines
1.9KB

  1. <!--pages/mobileVerification/mobileVerification.wxml-->
  2. <view class="all" >
  3. <view class="main">
  4. <image class="bg" src="{{imgUrl+'/star/bg.jpg'}}"></image>
  5. <view class="msgFrame">
  6. <view class="titleGroup">
  7. <image class="mobilepagelogo" src="{{imgUrl+'/images/mobilepagelogo.png'}}"></image>
  8. <view class="goodsName">启辰</view>
  9. <view class="goodsText">申请</view>
  10. </view>
  11. <view class="inputFrame">
  12. <view class="inputGroup">
  13. <view class="mobileFirst">+86</view>
  14. <image class="mobilepagedown" src="{{imgUrl+'/images/mobilepagedown.png'}}"></image>
  15. <view class="inputText" style="position: relative;">
  16. <input class="inputText" bindinput="getMoblie" value="{{mobileText}}" placeholder="手机号" type="number" maxlength='11'></input>
  17. <button class="getMobileBtn" wx:if="{{getMobileBtnShow}}" open-type="getPhoneNumber" bindgetphonenumber="getPhone" style="width:100%;height:100%;min-height:0;margin:0;padding:0;"></button>
  18. </view>
  19. </view>
  20. <view class="inputGroup" style="justify-content: space-between;margin-top:30rpx;">
  21. <input class="inputText" bindinput="getCodeText" placeholder="短信验证码"></input>
  22. <view class="codeSty" bindtap="getCode">{{verificationCode}}</view>
  23. </view>
  24. </view>
  25. <view class="agreementGroup">
  26. <image class="agreeIcon" bindtap="agreementState" src="{{imgUrl+(isAgreement?'/images/agreeIcon.png':'/images/disagreeIcon.png')}}"></image>
  27. <view class="agreementText"><view>我仔细阅读并接受所附的</view><view bindtap="agreementControl">《用户协议与隐私政策》</view></view>
  28. </view>
  29. <view class="submitBtn" bindtap="submitMobile">提交</view>
  30. </view>
  31. </view>
  32. <agreement bindmyevent="agreementControl" wx:if="{{agreement}}"></agreement>
  33. <tabBar></tabBar>
  34. </view>