From d5d59949f24c4071815aac409d697c3c5e983d78 Mon Sep 17 00:00:00 2001 From: MaYuanhai <414199639@qq.com> Date: Thu, 5 Mar 2020 10:12:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BC=98=E5=8C=96=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E5=90=8E=E7=9A=84checkCapslock=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=8C=E9=9C=80=E5=90=8C=E6=AD=A5?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=85=B6=E4=BB=96=E7=9B=B8=E5=85=B3=E5=88=86?= =?UTF-8?q?=E6=94=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 之前优化更新后存在的问题 1. 当大写锁定 shift 按住输入小写的时候并不能正常提示 大写被锁定 1. 当没有大写锁定 shift 按住输入小写的时候会异常提示 大写被锁定 2. 当提示大写被锁定后并不会只因为 按了 capslock 而关闭 大写被锁定的提示,alt 、ctrl、shift都可以 --- src/views/login/index.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) 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') {