|
@@ -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) {
|