You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
1.2 KiB

<!--pages/login/login.wxml-->
<view class='logo-container'>
<image class='logo' src='/images/logo.png'>
<view style="font-size:32rpx;color:#2675F5;position:absolute;top:180rpx;left:48rpx;">您好,欢迎使用</view>
<view style="font-size:40rpx;color:#2675F5;position:absolute;top:244rpx;left:48rpx;font-weight:bold;">运维巡检平台~</view>
</image>
</view>
<view class="body-container" wx:if='{{!isAutoLogin}}'>
<form report-submit='true' bindsubmit='getLogin'>
<view class='userName-container marginBottom'>
<image class='userName-logo' src='/images/userName.png' />
<input class='input' name='username' placeholder='请输入账号' value='' type='text' maxlength="50" confirm-type="next" bindinput='bindUserName' />
</view>
<view class='userName-container'>
<image class='password-logo' src='/images/password.png' />
<input class='input' name='password' placeholder='请输入密码' value='' type='text' password='true' maxlength="50" confirm-type="done" bindinput='bindPassword' />
</view>
<button class='login-btn' form-type="submit">登录</button>
</form>
</view>
<!-- <view class="forget" bindtap="bindForget">忘记密码</view> -->