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.

5 年之前
5 年之前
5 年之前
5 年之前
5 年之前
12345678910111213141516171819
  1. <!--pages/login/login.wxml-->
  2. <view class="container" wx:if="{{showLogin}}">
  3. <image class="bg" src="../../static/login/bg.jpg" mode="aspectFill"></image>
  4. <image class="logo" src="../../static/login/logo.png"></image>
  5. <view class="fromBox">
  6. <form bindsubmit="checkLogin">
  7. <view class="item">
  8. 账号
  9. <input name="userName"></input>
  10. </view>
  11. <view class="item">
  12. 密码
  13. <input name="password" password></input>
  14. </view>
  15. <button wx:if="{{!hasUserInfo && canIUse}}" class="btn" open-type="getUserInfo" bindgetuserinfo="getUserInfo" >登录</button>
  16. <button wx:else class="btn {{isLoginIng?'select':''}}" form-type="submit">登录</button>
  17. </form>
  18. </view>
  19. </view>