Эх сурвалжийг харах

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

xie.bx 2 жил өмнө
parent
commit
1c582238ec

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

@@ -355,8 +355,11 @@
 				});
 			},
 			onScrollToTop() {
+				// #ifdef MP
 				// 防止滚动条定格在顶部,不能一直往上滚
 				this.scrollToMsgIdx(this.showMinIdx);
+				// #endif
+
 				// 多展示10条信息
 				this.showMinIdx = this.showMinIdx > 10 ? this.showMinIdx - 10 : 0;
 			},