refactor(home): 修改入参id为currentDMid

This commit is contained in:
yangzhe 2025-12-02 10:48:43 +08:00
parent 2886f1890d
commit 4edf4fd034
1 changed files with 3 additions and 3 deletions

View File

@ -856,7 +856,7 @@ export default {
return this.$u.api return this.$u.api
.GetConversationDetail({ .GetConversationDetail({
"Item1.Id": this.currentConversationId, "Item1.Id": this.currentDMid,
PageIndex: currentIndex, PageIndex: currentIndex,
PageSize: pageSize, PageSize: pageSize,
}) })
@ -866,7 +866,7 @@ export default {
const prevIndex = currentIndex - 1; const prevIndex = currentIndex - 1;
return this.$u.api return this.$u.api
.GetConversationDetail({ .GetConversationDetail({
"Item1.Id": this.currentConversationId, "Item1.Id": this.currentDMid,
PageIndex: prevIndex, PageIndex: prevIndex,
PageSize: pageSize, PageSize: pageSize,
}) })
@ -914,7 +914,7 @@ export default {
this.pageQuery.PageIndex++; this.pageQuery.PageIndex++;
this.$u.api this.$u.api
.GetConversationDetail({ .GetConversationDetail({
"Item1.Id": this.currentConversationId, "Item1.Id": this.currentDMid,
PageIndex: this.pageQuery.PageIndex, PageIndex: this.pageQuery.PageIndex,
PageSize: this.pageQuery.PageSize, PageSize: this.pageQuery.PageSize,
}) })