From 42d5e1b0ab3b806f93a52a90e72440ffa2c86bc9 Mon Sep 17 00:00:00 2001 From: raofuzi <2641346316@qq.com> Date: Sun, 21 Apr 2024 20:59:19 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E6=85=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/Header/RecycleModal.vue | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/layout/components/Header/RecycleModal.vue b/src/layout/components/Header/RecycleModal.vue index 00731f4..066b9c7 100644 --- a/src/layout/components/Header/RecycleModal.vue +++ b/src/layout/components/Header/RecycleModal.vue @@ -623,20 +623,6 @@ watch(() => show.value, async (newVal) => { layout() } }) - -watch(() => pagination.pageNo, (newVal, oldVal) => { - if (newVal == oldVal) - return - - if ((newVal == 1 || newVal == 2) && canloadMore) { - setTimeout(() => { - nextTick(() => { - loading = false - loadMore() - }) - }, 300) - } -})