您好,登錄后才能下訂單哦!
本篇內容主要講解“如何實現vue3封裝自己的分頁組件”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何實現vue3封裝自己的分頁組件”吧!
在瀏覽列表類型的數據的時候,如果數據比較多一次性全部請求會出現性能損耗以及加載延遲等問題,那么此時分頁組件就起到了關鍵作用,它可以只請求一部分數據,也不會占用太多的頁面空間,想看別的數據可以通過頁碼的改變來發起請求,刷新頁面數據
現在我們自己來封裝分頁組件
total 屬性 :用來傳遞數據總條數
pagesize 屬性 :每頁展示幾條數據
currentPage 屬性 :當前默認頁碼
change-page 事件 :頁碼改變時觸發的事件,參數為當前頁碼
組件落地代碼my-pagination.vue
<template> <div class="my-pagination"> <a href="javascript:;" :class="{ disabled: currentPage === 1 }" @click="changePage(false)">上一頁</a> <span v-if="currentPage > 3">...</span> <a href="javascript:;" v-for="item in list" :key="item" :class="{ active: currentPage === item }" @click="changePage(item)" >{{ item }}</a > <span v-if="currentPage < pages - 2">...</span> <a href="javascript:;" :class="{ disabled: currentPage === pages }" @click="changePage(true)">下一頁</a> </div> </template> <script> import { computed, ref } from 'vue-demi' export default { name: 'MyPagination', props: { total: { type: Number, default: 80 }, pagesize: { type: Number, default: 10 } }, setup(props, { emit, attrs }) { // 當前頁 const currentPage = ref(attrs.currentPage) // 計算總頁數 const pages = computed(() => Math.ceil(props.total / props.pagesize)) // 頁碼顯示組合 const list = computed(() => { const result = [] // 總頁數小于等于5頁的時候 if (pages <= 5) { for (let i = 1; i <= pages; i++) { result.push(i) } } else { // 總頁數大于5頁的時候 // 控制兩個極端那邊的省略號的有無,頁碼的顯示個數與選中頁碼居中 if (currentPage.value <= 2) { for (let i = 1; i <= 5; i++) { result.push(i) } } else if (currentPage.value >= 3 && currentPage.value <= pages.value - 2) { for (let i = currentPage.value - 2; i <= currentPage.value + 2; i++) { result.push(i) } } else if (currentPage.value > pages.value - 2) { for (let i = pages.value - 4; i <= pages.value; i++) { result.push(i) } } } return result }) // 點擊上一頁下一頁頁碼改變頁碼 const changePage = type => { // 點擊上一頁按鈕 if (type === false) { if (currentPage.value <= 1) return currentPage.value -= 1 } else if (type === true) { // 點擊下一頁按鈕 if (currentPage.value >= pages.value) return currentPage.value += 1 } else { // 點擊頁碼 currentPage.value = type } // 傳給父組件當前頁碼,可以在該事件中做相關操作 emit('change-page', currentPage.value) } return { currentPage, pages, list, changePage } } } </script> <style scoped lang="less"> .my-pagination { display: flex; justify-content: center; padding: 30px; > a { display: inline-block; padding: 5px 10px; border: 1px solid #e4e4e4; border-radius: 4px; margin-right: 10px; &:hover { color: @xtxColor; } &.active { background: @xtxColor; color: #fff; border-color: @xtxColor; } &.disabled { cursor: not-allowed; opacity: 0.4; &:hover { color: #333; } } } > span { margin-right: 10px; } } </style>
使用組件
<XtxPagination :total="total" :pagesize="reqParams.pagesize" :currentPage="1" @change-page="changePage" />
效果
到此,相信大家對“如何實現vue3封裝自己的分頁組件”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。