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