Skip to content

Commit e806b1d

Browse files
shangTouPanJiaChen
authored andcommitted
perf: optimize checkCapslock method (PanJiaChen#2635)
* optimize checkCapslock method * update Co-authored-by: 花裤衩 <[email protected]>
1 parent fcb7f5d commit e806b1d

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

src/views/login/index.vue

+3-11
Original file line numberDiff line numberDiff line change
@@ -146,17 +146,9 @@ export default {
146146
// window.removeEventListener('storage', this.afterQRScan)
147147
},
148148
methods: {
149-
checkCapslock({ shiftKey, key } = {}) {
150-
if (key && key.length === 1) {
151-
if (shiftKey && (key >= 'a' && key <= 'z') || !shiftKey && (key >= 'A' && key <= 'Z')) {
152-
this.capsTooltip = true
153-
} else {
154-
this.capsTooltip = false
155-
}
156-
}
157-
if (key === 'CapsLock' && this.capsTooltip === true) {
158-
this.capsTooltip = false
159-
}
149+
checkCapslock(e) {
150+
const { key } = e
151+
this.capsTooltip = key && key.length === 1 && (key >= 'A' && key <= 'Z')
160152
},
161153
showPwd() {
162154
if (this.passwordType === 'password') {

0 commit comments

Comments
 (0)