fix(移动端): 移动端通过公共链接访问时,文本搜索组件无法进行输入 #13236
This commit is contained in:
parent
7e4a75dcbf
commit
214ad1c2c3
@ -96,10 +96,18 @@ const handleValueChange = () => {
|
||||
const lineWidth = computed(() => {
|
||||
return { width: queryConditionWidth() - 15 + 'px' }
|
||||
})
|
||||
|
||||
const handleInnerMouseDown = e => {
|
||||
e.stopPropagation()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="text-search-select" :style="{ background: customStyle.background }">
|
||||
<div
|
||||
@mousedown="handleInnerMouseDown"
|
||||
class="text-search-select"
|
||||
:style="{ background: customStyle.background }"
|
||||
>
|
||||
<div class="condition-type">
|
||||
<el-select
|
||||
class="condition-value-select"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user