login.wxml 1.0 KB

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