12345678910111213141516171819202122232425262728293031323334353637 |
- <view class="container">
- <view class="login-icon">
- <image class="login-img" src="../../resources/logo.png"></image>
- </view>
- <view class="login-form">
- <!--账号-->
- <view hidden="{{ifUser}}">
- <view class="inputView">
- <label class="inputLabel">手机号:</label>
- <input class="inputText" focus placeholder="请输入手机号" bindinput="phoneInput" />
- </view>
- <!--账号-->
- <view class="inputView">
- <label class="inputLabel">验证码:</label>
- <input class="inputText" value="{{code}}" focus placeholder="请输入验证码" bindinput="codeInput" />
- </view>
- </view>
- <!-- <view class="line"></view> -->
- <!--按钮-->
- <view class="loginBtnView" hidden="{{!ifUser}}">
- <button open-type="getUserInfo" class="loginBtn" type="primary" bindgetuserinfo="login">授权登录</button>
- </view>
- <view class="loginBtnView" hidden="{{ifUser}}">
- <button class="loginBtn" type="primary" bindtap="register">注册</button>
- </view>
- </view>
- </view>
- <view class='success' wx:if="{{success}}">
- <web-view src="{{text}}"></web-view>
- </view>
|