Archer_cdm
2 years ago
11 changed files with 76 additions and 79 deletions
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 187 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.0 KiB |
@ -1,6 +1,6 @@ |
|||
{ |
|||
"navigationBarBackgroundColor": "#fff", |
|||
"navigationBarTextStyle": "white", |
|||
"navigationBarTitleText": "登录", |
|||
"enablePullDownRefresh": false |
|||
"enablePullDownRefresh": false, |
|||
"navigationStyle": "custom", |
|||
"disableScroll": true |
|||
} |
@ -1,25 +1,21 @@ |
|||
<!--pages/login/login.wxml--> |
|||
<view class='logo-container'> |
|||
<image class='logo' src='/images/logo.png' mode='aspectFit' /> |
|||
<image class='logo' src='/images/logo.png' /> |
|||
</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' /> |
|||
<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' /> |
|||
<input class='input' name='password' placeholder='请输入密码' value='' type='text' password='true' maxlength="50" confirm-type="done" bindinput='bindPassword' /> |
|||
</view> |
|||
|
|||
<button class='login-btn' disabled="{{!userNameCan || !passwordCan}}" style='background:{{backgroundInput}}; color:{{colorInput}};' form-type="submit">登录</button> |
|||
<button class='login-btn' form-type="submit">登录</button> |
|||
</form> |
|||
</view> |
|||
|
|||
<view class='co-info'> |
|||
<view>仅提供内部人员使用</view> |
|||
<view>©飞尚科技</view> |
|||
</view> |
|||
<!-- <view class="forget" bindtap="bindForget">忘记密码</view> --> |
Loading…
Reference in new issue