Browse Source

修复h5键盘显示的bug

master
xsx 1 year ago
parent
commit
8d1c2fbee1
  1. 2
      im-uniapp/pages/chat/chat-box.vue

2
im-uniapp/pages/chat/chat-box.vue

@ -653,7 +653,7 @@
window.addEventListener('resize', () => {
let keyboardHeight = initHeight - window.innerHeight;
if (keyboardHeight > 0) {
this.keyboardHeight = this.rpxTopx(keyboardHeight);
this.keyboardHeight = keyboardHeight - 20;
this.showKeyBoard = true;
this.switchChatTabBox('none', false)
this.scrollToBottom();

Loading…
Cancel
Save