refactor(home): 暂时移除对话滚动限制条件

This commit is contained in:
yangzhe 2025-12-02 10:30:02 +08:00
parent 645f1289ca
commit 2886f1890d
1 changed files with 2 additions and 6 deletions

View File

@ -507,7 +507,7 @@ export default {
scrollToBottom() { scrollToBottom() {
// //
// //
if (this.isLoadingMore || !this.currentConversationId) return; if (this.isLoadingMore) return;
// 使nextTickDOM // 使nextTickDOM
this.$nextTick(() => { this.$nextTick(() => {
@ -903,11 +903,7 @@ export default {
console.log("触发上拉刷新"); console.log("触发上拉刷新");
// //
if ( if (this.noMoreData || this.isSwitchingConversation) {
this.noMoreData ||
this.isSwitchingConversation ||
!this.currentConversationId
) {
return; return;
} }