From 223bf47bbf71c36a9fe972fb5b785e8883190644 Mon Sep 17 00:00:00 2001 From: changjinpeng <185154740@qq.com> Date: Wed, 16 Mar 2022 10:35:15 +0800 Subject: [PATCH] bug --- src/mods/AppServiceOnline/serviceList.vue | 2 +- src/mods/AppServiceOnlineNew/list.vue | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mods/AppServiceOnline/serviceList.vue b/src/mods/AppServiceOnline/serviceList.vue index 99a6759..26bed96 100644 --- a/src/mods/AppServiceOnline/serviceList.vue +++ b/src/mods/AppServiceOnline/serviceList.vue @@ -53,7 +53,7 @@ this.loadingStatus = 'loading' this.$instance.post(`/app/approval-process-def/list-xcx?processType=${this.currIndex === 0 ? 0 : 2}`, null, { params: { - size: 10000, + size: 1000, classificationId: this.id, current: this.current }, diff --git a/src/mods/AppServiceOnlineNew/list.vue b/src/mods/AppServiceOnlineNew/list.vue index a3cee3f..5ff4e36 100644 --- a/src/mods/AppServiceOnlineNew/list.vue +++ b/src/mods/AppServiceOnlineNew/list.vue @@ -43,8 +43,9 @@ export default { this.$instance .post(`/app/approval-process-def/list-xcx?processType=0`, null, { params: { - size: 10000, + size: 100, classificationId: this.id, + current: this.current, }, withoutToken: true, }) @@ -77,6 +78,7 @@ export default { }, onReachBottom() { + this.current = this.current + 1 this.getList() }, }