phone-input.wxml 1021 B

12345678910111213141516171819202122
  1. <!--components/phone-input/phone-input.wxml-->
  2. <view class="container">
  3. <image src="{{imgServerUrl}}/images/happyjob/login_xiaobai.png" class="bg"></image>
  4. <view class="header">
  5. <view class="title">{{title}}</view>
  6. <view class='inputphone'>
  7. <input class='inputphone-input' value="{{ iphone }}" focus='{{focus}}' type="number" placeholder="请输入手机号码" placeholder-style="color:#ccc" maxlength='11' bindinput="bindPhoneInput" />
  8. <view class="clear" bindtap="clear">
  9. <image src="/images/happyjob/clear_login.png" class="clear-image"></image>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="agreement" wx:if='{{is_login}}'>
  14. <text>未注册开心工作的手机号码将自动注册,且代表您已经同意:</text>
  15. <text class="agreement-content">《用户注册协议》</text>
  16. </view>
  17. <view class="button" bindtap="toSend" style="margin-top:{{is_login?90:200}}rpx">
  18. <view class="button-content {{disabled?'':'opacity_5'}}">
  19. <text>获取短信验证码</text>
  20. </view>
  21. </view>
  22. </view>