index.wxml 967 B

12345678910111213141516171819
  1. <!-- 手机号 -->
  2. <view class='inputphone'>
  3. <input class='add' value="{{ iphone }}" type="number" placeholder="请输入手机号码" placeholder-style="color:rgba(187, 187, 187, 1)" maxlength='11' bindinput="bindPhoneInput" />
  4. </view>
  5. <!-- 验证码 -->
  6. <view class='inputyzm'>
  7. <input class='add' value="{{ yzm }}" type="number" placeholder="请输入短信验证码" placeholder-style="color:rgba(187, 187, 187, 1)" maxlength='6' bindinput="bindYzmInput" disabled='{{iphone.length!=11}}' />
  8. <view class="{{ yzm.length ==6? 'getyzm1':'getyzm'}}" bindtap='sendCode'>{{ djs || '获取验证码'}}</view>
  9. </view>
  10. <view class='tips'>
  11. <text class='tiplong'>未注册开心工作的手机号将自动注册,且代表您已同意:《</text>
  12. <text class='tipclick'>用户注册协议</text>
  13. <text class='tipclick'>》</text>
  14. </view>
  15. <view class="{{ yzm.length ==6? 'login1':'login'}}">
  16. <view class='logintext' bindtap='phone_login'>登录</view>
  17. </view>