fix: 数据大屏非图表组件输入样式信息回车出现跳转问题

This commit is contained in:
wangjiahao 2024-01-22 10:59:27 +08:00
parent 182c15943d
commit 3e41ca5587

View File

@ -102,6 +102,12 @@ onMounted(() => {
})
})
})
const stopEvent = e => {
if (e && e.code === 'Enter') {
e.stopPropagation()
e.preventDefault()
}
}
</script>
<template>
@ -231,6 +237,8 @@ onMounted(() => {
></el-option>
</el-select>
<el-input-number
@keydown="stopEvent"
@keyup="stopEvent"
v-else
size="middle"
style="width: 100%"