From d4058ed884e4d91a598fd364810ba3638da5bbe6 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 7 Mar 2023 16:23:51 +0800 Subject: [PATCH] BUG 56 --- src/project/qujing/AppConflictMediation/myReply.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/project/qujing/AppConflictMediation/myReply.vue b/src/project/qujing/AppConflictMediation/myReply.vue index 36472302..e903e754 100644 --- a/src/project/qujing/AppConflictMediation/myReply.vue +++ b/src/project/qujing/AppConflictMediation/myReply.vue @@ -47,7 +47,6 @@ export default { computed: { ...mapState(['user']), }, - watch: {}, onLoad() { this.getList() }, @@ -56,11 +55,12 @@ export default { }, methods: { getList() { - this.$http.post(`/app/appconflicteventinfo/list`, null, {params: {size: 10, current: this.current}}).then((res) => { + this.$http.post(`/app/appconflicteventinfo/list`, null, { + params: {size: 10, current: this.current, girdMemberId: this.user.girdMemberId} + }).then((res) => { if (res.code == 0) { this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records this.pages = res.data.pages - this.$forceUpdate() } }) }, @@ -68,6 +68,10 @@ export default { uni.navigateTo({url: `./detail?id=${item.id}&isMine=1`}) }, }, + onReachBottom() { + this.current++ + this.getList() + } }