logins.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <view style="background: #f5f5f5; padding: 20rpx 0;">
  2. <view class="goodslist_boxs">
  3. <!-- <view class="input-group">
  4. <label>园所</label>
  5. <input type="text" placeholder="请输入园所名称" />
  6. </view>
  7. <view class="input-group">
  8. <label>姓名</label>
  9. <view>
  10. <input type="text" placeholder="请输入姓名" />
  11. </view>
  12. </view> -->
  13. <view class="input-group">
  14. <label>手机号码</label>
  15. <view>
  16. <input bindinput="onInputPhone" value="{{phone}}" type="text" placeholder="请输入常用的手机号码" />
  17. </view>
  18. </view>
  19. <captcha wx:if="{{falog === false}}" id="loginCaptcha" phone="{{phone}}" />
  20. <view class="input-group" wx:if="{{falog === true}}">
  21. <label>姓名</label>
  22. <view>
  23. <input bindinput="onInputName" value="{{name}}" type="text" placeholder="请输入常用的手机号码" readonly />
  24. </view>
  25. </view>
  26. <view class="input-group" wx:if="{{falog === true}}">
  27. <label>园所</label>
  28. <view>
  29. <input bindinput="onInputYuan" value="{{yuan}}" type="text" placeholder="请输入常用的手机号码" readonly />
  30. </view>
  31. </view>
  32. <!-- <navigator url="/pages/login/login" open-type="navigate">您还没有绑定,去绑定</navigator> -->
  33. <button wx:if="{{falog === false }}" bindtap="onConfirm" class="confirm-btn">登录</button>
  34. <button wx:if="{{falog === true}}" bindtap="gotuhome" class="confirm-btn">进入首页</button>
  35. </view>
  36. <van-dialog id="van-dialog" />
  37. </view>