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 години
123456789101112131415161718
  1. <!--pages/login/login.wxml-->
  2. <view class="container">
  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 class="btn {{isLoginIng?'select':''}}" form-type="submit">登录</button>
  16. </form>
  17. </view>
  18. </view>