12345678910111213141516171819 |
- <!--pages/login/login.wxml-->
- <view class="layout">
- <image src="/static/images/logo_big@2x.png"></image>
- <text class="title">欢迎登录</text>
- <text class="desc">广东省消防救援总队火调VR数据平台</text>
- <view>
- <input type="text" placeholder="请输入账号" bindinput="updatePhone" value="{{phone}}" class="name" placeholder-style="color:#C8C9CC;" />
- </view>
- <view class="{{showPsw ? 'hide' : ''}}">
- <input type="password" value="{{psw}}" placeholder="请输入密码" bindinput="updatePsw" class="{{psw}}" placeholder-style="color:#C8C9CC;" />
- <image src="/static/images/log_eye_normal@2x.png" bindtap="showPsw"></image>
- </view>
- <view class="{{!showPsw ? 'hide' : ''}}">
- <input type="text" value="{{psw}}" placeholder="请输入密码" bindinput="updatePsw" class="{{psw}}" placeholder-style="color:#C8C9CC;" />
- <image src="/static/images/log_eye_normal@2xx.png" bindtap="hidePsw"></image>
- </view>
- <button class="btn {{tg ? 'success': ''}}" bindtap="login">登录</button>
- </view>
|