Browse Source

修复聊天窗口页面无法滚动的问题

master
xie.bx 2 years ago
parent
commit
1c582238ec
  1. 3
      im-uniapp/pages/chat/chat-box.vue

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

@ -355,8 +355,11 @@
}); });
}, },
onScrollToTop() { onScrollToTop() {
// #ifdef MP
// //
this.scrollToMsgIdx(this.showMinIdx); this.scrollToMsgIdx(this.showMinIdx);
// #endif
// 10 // 10
this.showMinIdx = this.showMinIdx > 10 ? this.showMinIdx - 10 : 0; this.showMinIdx = this.showMinIdx > 10 ? this.showMinIdx - 10 : 0;
}, },

Loading…
Cancel
Save