42 lines
2.0 KiB
Plaintext
42 lines
2.0 KiB
Plaintext
<!--pages/login/login.wxml-->
|
|
<view class="login" style="background-image: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/login/Group_491_jingshui.png);">
|
|
<view class="login-title">
|
|
<view class="login-tip" style="font-size: 40rpx; color: #000000;">欢迎来到【人人爱净水】</view>
|
|
<!-- <view class="login-tip" style="font-size: 28rpx; color: #555555; margin-top: 30rpx;">为了更好的体验,请选择登录方式</view> -->
|
|
<view class="login-tip" style="font-size: 28rpx; color: #555555; margin-top: 30rpx;" wx:if="{{loginType === 'phone'}}">为了更好的体验,申请获取您的公开信息</view>
|
|
|
|
<!-- 登录方式切换 -->
|
|
<!-- <view class="login-type">
|
|
<view class="login-type-item {{loginType === 'phone' ? 'active' : ''}}" bindtap="switchLoginType" data-type="phone">
|
|
手机登录
|
|
</view>
|
|
<view class="login-type-item {{loginType === 'account' ? 'active' : ''}}" bindtap="switchLoginType" data-type="account">
|
|
账号密码登录
|
|
</view>
|
|
</view> -->
|
|
|
|
<view class="agreement">
|
|
<text>登录即表示您已同意</text>
|
|
<text class="link" bindtap="navigateToAgreement">《用户服务协议和隐私政策》</text>
|
|
</view>
|
|
|
|
<!-- 账号密码登录 -->
|
|
<view>
|
|
<view class="login-form">
|
|
<input class="login-input" value="{{account}}" bindinput="accountIpt" placeholder="请输入账号" />
|
|
<input class="login-input" password value="{{password}}" bindinput="passwordIpt" placeholder="请输入密码" />
|
|
</view>
|
|
<view class="login-button">
|
|
<button class="login-btn" bindtap="accountLogin">
|
|
登录
|
|
</button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="login-to-home">
|
|
<text class="login-to-home-text" bindtap='tohome'>
|
|
返回首页>>
|
|
</text>
|
|
</view>
|
|
</view>
|
|
</view> |