refactor(home): 修改入参id为currentDMid
This commit is contained in:
parent
2886f1890d
commit
4edf4fd034
|
|
@ -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,
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue