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) - } -})