溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue封裝自定義分頁器組件與使用方法是什么

發(fā)布時(shí)間:2022-01-12 08:26:21 來源:億速云 閱讀:364 作者:柒染 欄目:開發(fā)技術(shù)

這篇文章給大家介紹vue封裝自定義分頁器組件與使用方法是什么,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

前言

分頁是開發(fā)各種系統(tǒng)時(shí)候最常用的功能,下面為本人封裝的一個(gè)分頁組件。

實(shí)現(xiàn)分頁器操作需要以下參數(shù)

  • 當(dāng)前頁: pageNo

  • 每頁展示條數(shù): pageSize

  • 數(shù)據(jù)總條數(shù) : total

  • 連續(xù)頁碼數(shù):continues (一般為奇數(shù),頁面對(duì)稱更美觀)

分頁器在各大項(xiàng)目中出現(xiàn)的頻率較多,我們可以封裝成靜態(tài)組件,并全局注冊(cè)這個(gè)組件。

1.全局注冊(cè)組件方法:在mian.js文件中操作

import Pagination from '@/components/Pagination'   // 組件路徑
Vue.component(Pagination.name,Pagination)

2.其他頁面分頁器的時(shí)候可以直接使用。父頁面向子頁面?zhèn)鬟f數(shù)據(jù),使用prop傳遞。

<template>
    <Pagination 
		:pageNo="this.pageNo"
        :pageSize="this.pageSize"
        :total="93"
        :continues="5"
        @getPageNo="getPageNo"
/>
</template>

<script>
    export default {
        name: "index",
        data(){
			return{
			pageNo:1,
			pageSize:4,
			}	
		},
		methods:{
			getPageNo(pageNo){
			this.pageNo=pageNo
			}
		}
   
    }
</script>

分頁器 Pagination.vue

<template>
    <div class="pagination">
        <!-- 上 -->
        <button :disabled="pageNo == 1" @click="getPageNo(pageNo - 1)">
            上一頁
        </button>
        <button
                v-if="startNumAndEndNum.start > 1"
                @click="getPageNo(1)"
                :class="{ active: pageNo == 1 }"
        >1
        </button>
        <button
                v-if="startNumAndEndNum.start > 2"
                @click="getPageNo(pageNo - continues)"
        >···
        </button>
        <!-- 中間部分 -->
        <button
                v-for="(page, index) in generateMiddlePage"
                :key="index"
                @click="getPageNo(page)"
                :class="{ active: pageNo == page }">
            {{ page }}
        </button>

        <!-- 下 -->
        <button
                v-if="startNumAndEndNum.end < totalPage - 1"
                @click="getPageNo(pageNo +continues)"
        >···
        </button>
        <button
                v-if="startNumAndEndNum.end < totalPage"
                @click="getPageNo(totalPage)"
                :class="{active:pageNo==totalPage}">
            {{ totalPage }}
        </button>

        <button
                :disabled="pageNo == totalPage"
                @click="getPageNo(pageNo + 1)">
            下一頁
        </button>

        <button >共 {{ total }} 條</button>
    </div>
</template>

<script>

    export default {
        name: "Pagination",
        props: ["pageNo", "pageSize", "total", "continues"],
        computed: {
            //計(jì)算出總頁數(shù)
            totalPage() {
			//向上取整
                return Math.ceil(this.total / this.pageSize);
            },
  			//計(jì)算出頁碼的起始和結(jié)束數(shù)字
            startNumAndEndNum() {
                const {continues, pageNo, totalPage} = this;
				//先定義兩個(gè)變量存儲(chǔ)起始數(shù)字與結(jié)束數(shù)字
                let start = 0,
                    end = 0;

                if (continues > totalPage) {
                    start = 1;
                    end = totalPage;
                } else {
					//起始數(shù)字
                    start = pageNo - parseInt(continues / 2);
					//結(jié)束數(shù)字
                    end = pageNo + parseInt(continues / 2);
                    
                    if (start < 1) {
                        start = 1;
                        end = continues;
                    }
                    
                    if (end > totalPage) {
                        end = totalPage;
                        start = totalPage - continues + 1;
                    }
                }
                return {start, end};
            },
            //過濾掉小于起始頁的頁碼
            generateMiddlePage() {
                let arr = [];
                //避免頁面中同時(shí)使用 v-for和v-if 
                for (let i = 0; i <= this.startNumAndEndNum.end; i++) {
                    arr.push(i)
                }
                let temp = arr.filter(item => {
                    return item >= this.startNumAndEndNum.start
                })
                return temp

            }
        },
        
        methods: {
            getPageNo(val) {
            	//自定義事件子頁面向父頁面?zhèn)鲄?,?jì)算屬性值
                this.$emit('getPageNo', val)
            },

        }
    };
</script>

<style lang="less" scoped>
    .pagination {
        text-align: center;

        button {
            margin: 0 5px;
            background-color: #f4f4f5;
            color: #606266;
            outline: none;
            border-radius: 2px;
            padding: 0 4px;
            vertical-align: top;
            display: inline-block;
            font-size: 13px;
            min-width: 35.5px;
            height: 28px;
            line-height: 28px;
            cursor: pointer;
            box-sizing: border-box;
            text-align: center;
            border: 0;

            &[disabled] {
                color: #c0c4cc;
                cursor: not-allowed;
            }

            &.active {
                cursor: not-allowed;
                background-color: #409eff;
                color: #fff;
            }
        }
    }

    .active {
        background: skyblue;
    }
</style>

關(guān)于vue封裝自定義分頁器組件與使用方法是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI