diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 25906405..0b7f169e 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -138,9 +138,15 @@ export default { // window.removeEventListener('storage', this.afterQRScan) }, methods: { - checkCapslock(e) { - const { key } = e - this.capsTooltip = key && key.length === 1 && (key >= 'A' && key <= 'Z') + checkCapslock({ shiftKey, key }) { + if (key && key.length === 1) { + if (shiftKey && (key >= 'a' && key <= 'z') || !shiftKey && (key >= 'A' && key <= 'Z')) { + this.capsTooltip = true + } else { + this.capsTooltip = false + } + } + key === 'CapsLock' && this.capsTooltip === true && (this.capsTooltip = false) }, showPwd() { if (this.passwordType === 'password') {