1. 登录模块新增软key登录模块代码
parent
06c3761d05
commit
1a4f1b6734
|
@ -227,6 +227,7 @@ async function handleUkeyLogin() {
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
function checkCapslock({ shiftKey, key }: { shiftKey: boolean; key: string }) {
|
||||
if (key && key.length === 1) {
|
||||
if ((shiftKey && key >= 'a' && key <= 'z') || (!shiftKey && key >= 'A' && key <= 'Z')) {
|
||||
|
@ -239,6 +240,7 @@ function checkCapslock({ shiftKey, key }: { shiftKey: boolean; key: string }) {
|
|||
capsTooltip.value = false
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
Loading…
Reference in New Issue