Pārlūkot izejas kodu

【优化】AI Chat 对话自动滚动

cherishsince 1 gadu atpakaļ
vecāks
revīzija
e0b38f5804
1 mainītis faili ar 1 papildinājumiem un 2 dzēšanām
  1. 1 2
      src/views/ai/chat/index.vue

+ 1 - 2
src/views/ai/chat/index.vue

@@ -179,8 +179,7 @@ function handleScroll() {
   const scrollTop = scrollContainer.scrollTop
   const scrollHeight = scrollContainer.scrollHeight
   const offsetHeight = scrollContainer.offsetHeight
-
-  if (scrollTop + offsetHeight < scrollHeight) {
+  if ((scrollTop + offsetHeight) < (scrollHeight - 50)) {
     // 用户开始滚动并在最底部之上,取消保持在最底部的效果
     isScrolling.value = true
   } else {