diff --git a/src/App.vue b/src/App.vue index e09f6e8..569a43c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -32,14 +32,4 @@ \ No newline at end of file diff --git a/src/static/scss/global.scss b/src/static/scss/global.scss index ac636bd..f75476f 100644 --- a/src/static/scss/global.scss +++ b/src/static/scss/global.scss @@ -88,3 +88,18 @@ } } } + + // 下拉选择输入框:整块输入区域响应父级点击,避免移动端只点箭头才触发 + .input-with-arrow { + width: 100%; + cursor: pointer; + + .u--input, + .u-input, + .u-input__content, + .u-input__content__field-wrapper, + .u-input__content__field-wrapper__field, + input { + pointer-events: none !important; + } + }