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
.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,
})