成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

vue仿element實現(xiàn)分頁器效果

1 .起因

成都創(chuàng)新互聯(lián)專注于廣靈企業(yè)網(wǎng)站建設(shè),自適應(yīng)網(wǎng)站建設(shè),商城網(wǎng)站定制開發(fā)。廣靈網(wǎng)站建設(shè)公司,為廣靈等地區(qū)提供建站服務(wù)。全流程按需定制設(shè)計,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

今日看完element中分頁器的源碼實現(xiàn),比較簡單,遂自己按著理解實現(xiàn)了一個簡單的分頁器,記錄下來,以便日后溫習(xí).

2.實現(xiàn)難點

分頁器的實現(xiàn)難點主要是什么時候顯示分頁器的省略, 我的思路是: 規(guī)定一個值foldPage, 意為當(dāng)前最多顯示的標(biāo)簽數(shù),當(dāng)總頁數(shù)超過即顯示省略.省略分為左邊省略(folder1)和右邊省略(folder2),布局代碼如下:

<div class="pagination" @click="pageClick">
    <button class="pre">上一頁</button>
    <ul class="pages">
      <li :class="['first', { 'active' : current == 1 }]" v-if="total">
        1
      </li>
      <li :class="[ testLeft,goback]"
        v-show="showPreMore"
        @mouseenter="testLeft='more-left'"
        @mouseleave="testLeft='more'"></li>
      <li :class="['page-item', { 'active' : current == item }]" v-for="item in $pages">
        {{ item }}
      </li>
      <li :class="[ testRight,gogo]" 
        v-show="showNextMore"
        @mouseenter="testRight='more-right'"
        @mouseleave="testRight='more'"></li>
      <li :class="['last', { 'active' : current == $last }]" v-if="total">
        {{ $last }}
      </li>
    </ul>
    <button class="next">下一頁</button>
  </div>

$pages是一個計算屬性,用于動態(tài)生成中間的頁碼,以及控制folder1和folder2的顯示,代碼如下:

computed:{
    // 中間頁數(shù)組
    $pages(){
      const foldPage = this.foldPage 
      const current = Number(this.current)
      const halfFoldPage = Math.floor((foldPage-2)/2) 
      if (this.$last > foldPage){
        if (current - halfFoldPage > 2){
          this.showPreMore = true
        }else {
          this.showPreMore = false
        }
        if (current + halfFoldPage < this.$last){
          this.showNextMore = true
        }else {
          this.showNextMore = false
        }
      }
      let array = []
      // folder1顯示
      if (this.showNextMore && !this.showPreMore){
        for(let i = 2; i < foldPage; i++){
          array.push(i)
        }
      // folder1 和 folder2都顯示
      }else if ( this.showPreMore && this.showNextMore ){
        for(let i = current - halfFoldPage; i <= current + halfFoldPage; i++ ){
          array.push(i)
        }
      // folder2顯示
      }else if (!this.showNextMore && this.showPreMore){
        // 當(dāng)folder2顯示的時候,頁碼不能大于$last,需要往前多顯示差額
        let dis = current + halfFoldPage - this.$last + 1;
        for(let i = current - halfFoldPage - dis ; i < this.$last; i++){
          array.push(i)
        }
      // 都不顯示
      }else {
        for(let i = 2; i < this.$last; i++){
          array.push(i)
        }
      }
      return array
    },
    // 總頁數(shù)
    $last(){             
      return Math.ceil(this.total/this.size)
    }
  }

所有的點擊都用一個函數(shù)處理, 根據(jù)e.target判斷點擊的目標(biāo).從而做出相應(yīng)的邏輯:

methods:{
    pageClick(e){
      let newPage = Number(e.target.textContent)
      this.current = Number(this.current);

      if (!isNaN(newPage) && newPage){
        this.current = newPage
      }else {
        // 下一頁
        if (e.target.className.indexOf('next') != -1){
          if (this.current == this.$last){
            return;
          }
          this.current ++
        }
        // 上一頁
        else if (e.target.className.indexOf('pre') != -1){
          if (this.current == 1){
            return
          }
          this.current --
        }
        // 省略向左
        else if (e.target.className.indexOf('left') != -1){
          this.current -= this.foldPage - 2

          if (this.current <= 1){
            this.current = 1
            return
          }
        }
        // 省略向右
        else if(e.target.className.indexOf('right') != -1){
          this.current += this.foldPage - 2
          
          if (this.current >= this.$last){
            this.current = this.$last
            return 
          }
        }

      }
    }
  },

3.總結(jié)

pagination組件在element中算是一個很簡單的組件,靜下心來看不是很復(fù)雜,理解其思路以后可以自己嘗試去寫出來,細(xì)節(jié)可以無需在意.

總結(jié)

以上所述是小編給大家介紹的vue仿element實現(xiàn)分頁器效果,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!

標(biāo)題名稱:vue仿element實現(xiàn)分頁器效果
轉(zhuǎn)載源于:http://jinyejixie.com/article12/ghhpdc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、網(wǎng)站維護(hù)、云服務(wù)器、軟件開發(fā)、網(wǎng)站內(nèi)鏈、商城網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化
瑞昌市| 凤台县| 固镇县| 顺平县| 榆中县| 子长县| 大兴区| 和龙市| 乐平市| 独山县| 桂平市| 德庆县| 株洲市| 呼和浩特市| 师宗县| 海南省| 远安县| 玉山县| 象山县| 大兴区| 平果县| 长治县| 商水县| 专栏| 江川县| 二连浩特市| 北票市| 精河县| 泰安市| 理塘县| 福海县| 太仆寺旗| 波密县| 昌吉市| 河东区| 西青区| 巩义市| 宜丰县| 宜阳县| 日土县| 黄大仙区|