Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <!--pages/login/login.wxml-->
- <view class="container">
- <image class="bg" src="../../static/login/bg.jpg" mode="aspectFill"></image>
- <image class="logo" src="../../static/login/logo.png"></image>
- <view class="fromBox">
- <form bindsubmit="checkLogin">
- <view class="item">
- 账号
- <input name="userName"></input>
- </view>
- <view class="item">
- 密码
- <input name="password" password></input>
- </view>
- <button wx:if="{{!hasUserInfo && canIUse}}" class="btn" open-type="getUserInfo" bindgetuserinfo="getUserInfo" >登录</button>
- <button wx:else class="btn {{isLoginIng?'select':''}}" form-type="submit">登录</button>
- </form>
- </view>
- </view>
|