Commit 1fc42cb0 authored by linxin's avatar linxin

Merge branch 'liuxin' into develop

parents 4f42e08f 326c43f5
...@@ -50,7 +50,7 @@ export default { ...@@ -50,7 +50,7 @@ export default {
}, },
methods: { methods: {
changeType () { changeType () {
this.pwdType = this.pwdType === 'password' ? 'text' : 'password'; this.pwdType = this.pwdType === 'password' ? 'text' : 'password'
this.openEye = this.openEye =
this.pwdType === 'password' this.pwdType === 'password'
? require('@/assets/login/passNoShow.png') ? require('@/assets/login/passNoShow.png')
...@@ -100,7 +100,7 @@ export default { ...@@ -100,7 +100,7 @@ export default {
} else if (!vm.password || vm.password === undefined) { } else if (!vm.password || vm.password === undefined) {
vm.hlsPopup.showLongCenter('请输入密码') vm.hlsPopup.showLongCenter('请输入密码')
} else { } else {
let url = process.env.loginPath + 'admin'; let url = process.env.loginPath + 'admin'
let param = {} let param = {}
vm.hlsPopup.showLoading('请稍等') vm.hlsPopup.showLoading('请稍等')
vm.$post(url, param).then(function (res) { vm.$post(url, param).then(function (res) {
...@@ -117,11 +117,11 @@ export default { ...@@ -117,11 +117,11 @@ export default {
this.$router.push('pwd-forgot') this.$router.push('pwd-forgot')
}, },
clearAccount: function () { clearAccount: function () {
this.username = ''; this.username = ''
this.password = ''; this.password = ''
}, },
clearPassword: function () { clearPassword: function () {
this.password = ''; this.password = ''
}, },
}, },
} }
...@@ -192,6 +192,7 @@ export default { ...@@ -192,6 +192,7 @@ export default {
font-size: 14px; font-size: 14px;
color: #2a2a2a; color: #2a2a2a;
height: 35px; height: 35px;
line-height: 35px;
display: flex; display: flex;
align-items: center; align-items: center;
border-bottom: 1px solid rgba(42, 42, 42, 0.4); border-bottom: 1px solid rgba(42, 42, 42, 0.4);
......
...@@ -306,6 +306,7 @@ export default { ...@@ -306,6 +306,7 @@ export default {
padding-bottom: 8px; padding-bottom: 8px;
font-size: 14px; font-size: 14px;
color: #ffffff; color: #ffffff;
line-height: 30px;
border-bottom: 1px solid rgba(255, 255, 255, 0.4); border-bottom: 1px solid rgba(255, 255, 255, 0.4);
} }
input::placeholder { input::placeholder {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment