|
|
|
|
@ -3,10 +3,10 @@ |
|
|
|
|
<view class="container"> |
|
|
|
|
<view class="title">科研医疗建筑运维平台</view> |
|
|
|
|
<view class="sp-login-form"> |
|
|
|
|
<betone-new-input v-model="userInfo.username" placeholder="请输入用户名" icon="account-fill" |
|
|
|
|
style="margin-bottom: 32rpx" /> |
|
|
|
|
<betone-new-input :value="userInfo.username" placeholder="请输入用户名" icon="account-fill" |
|
|
|
|
style="margin-bottom: 32rpx" @changevalue="userInfo.username=$event" /> |
|
|
|
|
<betone-new-input style="margin-bottom: 32rpx" v-model="userInfo.pwd" placeholder="请输入密码" :type="'password'" |
|
|
|
|
icon="lock-fill" /> |
|
|
|
|
icon="lock-fill" @changevalue="userInfo.pwd=$event" /> |
|
|
|
|
<u-checkbox-group> |
|
|
|
|
<u-checkbox @change="rememberPwdChange" v-model="rememberPwd" key="index" name="记住密码">记住密码</u-checkbox> |
|
|
|
|
</u-checkbox-group> |
|
|
|
|
@ -42,6 +42,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
disabled() { |
|
|
|
|
console.log(11111111111,this.userInfo) |
|
|
|
|
return !this.userInfo.username || !this.userInfo.pwd; |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
|