gaoluyang
2025-09-19 7b51e925d5be81c795476cb59208b99906e4a5fd
src/components/Pagination/index.vue
@@ -59,7 +59,7 @@
  }
})
const emit = defineEmits();
const emit = defineEmits()
const currentPage = computed({
  get() {
    return props.page
@@ -76,6 +76,7 @@
    emit('update:limit', val)
  }
})
function handleSizeChange(val) {
  if (currentPage.value * val > props.total) {
    currentPage.value = 1
@@ -85,13 +86,13 @@
    scrollTo(0, 800)
  }
}
function handleCurrentChange(val) {
  emit('pagination', { page: val, limit: pageSize.value })
  if (props.autoScroll) {
    scrollTo(0, 800)
  }
}
</script>
<style scoped>