Kaynağa Gözat

fix: 修复ios h5白屏的bug(降低概率)

xsx 6 ay önce
ebeveyn
işleme
acd5c37f4b
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. 5 1
      im-uniapp/pages/chat/chat-box.vue

+ 5 - 1
im-uniapp/pages/chat/chat-box.vue

@@ -676,9 +676,13 @@ export default {
 					if (this.scrollTop < 10) {
 						// 未渲染完成,重试一次
 						this.holdingScrollBar();
+					} else {
+						// 让页面再滚动一下,解决部分ios手机出现白屏问题
+						const delays = [100, 300, 1000];
+						delays.forEach(delay => setTimeout(() => this.scrollTop += 5, delay))
 					}
 				});
-			}, 50)
+			}, 10)
 		},
 		onShowMore() {
 			if (this.isGroup) {