2 Commits 1f02b2e26f ... fc30ac6d3d

Author SHA1 Message Date
  sa03 fc30ac6d3d 处理ios系统下窗体闪烁的bug 5 years ago
  sa03 effc7c821a 处理ios系统下窗体闪烁的bug 5 years ago
1 changed files with 7 additions and 0 deletions
  1. 7 0
      _src/components/chatMini/chatMini.vue

+ 7 - 0
_src/components/chatMini/chatMini.vue

@@ -247,6 +247,10 @@ export default {
     inputMsg (val, newval) {
       let ele = this.$refs.chatInput
       this.inputHeight = 'auto'
+
+      // 处理ios系统下窗体闪烁的bug
+      this.$refs.scrollWrap.style.overflowY = 'hidden'
+
       this.$nextTick(() => {
         this.inputHeight = Math.max(18, Math.min(ele.scrollHeight, 75)) + 'px'
       })
@@ -707,6 +711,9 @@ export default {
       return false
     },
     handleBlur () {
+      // 处理ios系统下窗体闪烁的bug
+      this.$refs.scrollWrap.style.overflowY = 'scroll'
+
       this.updateChatInputFocus(false)
     },
     placeEnd (el) {