From 4edf4fd034119caeca03a27c36404b74b277c825 Mon Sep 17 00:00:00 2001 From: yangzhe Date: Tue, 2 Dec 2025 10:48:43 +0800 Subject: [PATCH] =?UTF-8?q?refactor(home):=20=E4=BF=AE=E6=94=B9=E5=85=A5?= =?UTF-8?q?=E5=8F=82id=E4=B8=BAcurrentDMid?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/home/index/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/home/index/index.vue b/pages/home/index/index.vue index 4dc9d1a..58a9b41 100644 --- a/pages/home/index/index.vue +++ b/pages/home/index/index.vue @@ -856,7 +856,7 @@ export default { return this.$u.api .GetConversationDetail({ - "Item1.Id": this.currentConversationId, + "Item1.Id": this.currentDMid, PageIndex: currentIndex, PageSize: pageSize, }) @@ -866,7 +866,7 @@ export default { const prevIndex = currentIndex - 1; return this.$u.api .GetConversationDetail({ - "Item1.Id": this.currentConversationId, + "Item1.Id": this.currentDMid, PageIndex: prevIndex, PageSize: pageSize, }) @@ -914,7 +914,7 @@ export default { this.pageQuery.PageIndex++; this.$u.api .GetConversationDetail({ - "Item1.Id": this.currentConversationId, + "Item1.Id": this.currentDMid, PageIndex: this.pageQuery.PageIndex, PageSize: this.pageQuery.PageSize, })