溫馨提示×

溫馨提示×

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

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

Ant?Design?Vue?table組件怎么自定義分頁器

發(fā)布時(shí)間:2023-04-20 11:07:37 來源:億速云 閱讀:178 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Ant Design Vue table組件怎么自定義分頁器的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Ant Design Vue table組件怎么自定義分頁器文章都會(huì)有所收獲,下面我們一起來看看吧。

    Ant Design Vue table組件自定義分頁器

    Ant?Design?Vue?table組件怎么自定義分頁器

    由 Ant Design of Vue 提供的Table表格組件自身是帶有pagination分頁功能的,用于獲取到后臺(tái)返回的全部數(shù)據(jù)時(shí)很適用。但是項(xiàng)目需求需要用到分頁查詢以及條數(shù)查詢時(shí),就需要我們對代碼做出改變

    1.設(shè)置pagination屬性為false,取消table組件自帶的分頁效果

    <a-table
      :pagination="false"
    >
    </a-table>

    2.使用分頁組件,選用合適的屬性

    <a-pagination
      v-model="current"
      show-size-changer
      :page-size.sync="pageSize"
      :total="total"
      :show-total="total => `總數(shù) ${total} 條`" 
    />
    data () {
        return {
          total:0,
          pageSize: 10,
          current: 1
    },
    watch: {
        // 監(jiān)聽條數(shù)的改變
        pageSize(val) {
          console.log('pageSize', val);
          this.pageSize = val
          this.current = 1
          this.getRtSignByPage()
        },
        // 監(jiān)聽頁數(shù)的改變
        current(val) {
          console.log('current', val);
          this.current = val
          this.getRtSignByPage()
        },
    },
    mounted () {
        this.getRtSignByPage()
    },
    methods: {
        // 按條件分頁查詢
        async getRtSignByPage () {
          let { data } = await getMenuPages({
            current:this.current,
            size:this.pageSize
          })
          this.data = data.data.records
          this.total = data.data.total
        }
    }

    使用Ant Design Vue的Table組件,解決點(diǎn)擊任意內(nèi)容詳情,點(diǎn)擊返回分頁器頁數(shù)默認(rèn)回到第一頁

    問題描述

    使用 Ant Design VueTable 組件時(shí),點(diǎn)擊底部分頁器切換頁面,表格信息會(huì)重新加載,但是頁面路由還是相同的,這就導(dǎo)致切換頁面之后,點(diǎn)擊某一元素的詳情頁面之后,點(diǎn)擊返回默認(rèn)回到表格的第一頁,就比如你點(diǎn)擊 頁數(shù)為 3 的一個(gè)元素切換到它的詳情頁,點(diǎn)擊返回,表格又回到了頁數(shù) 1,這樣的操作體驗(yàn)十分不友好

    Ant?Design?Vue?table組件怎么自定義分頁器

    解決方法

    巧妙運(yùn)用  paginationdefaultCurrent(默認(rèn)頁數(shù)屬性),配合使用 onChange方法, 使用 sessionStorage.setItem()sessionStorage.getItem() 來存儲(chǔ)和取出當(dāng)前頁數(shù) ,

    表格代碼

    這里的代碼只是測試用例,用于演示

     <a-table 
         :data-source="data"
    	:columns="columns" 
    	:pagination="pagination"
        >
            <template slot="address" >
            <div >
                <span>
                <a @click="ClickDetail">詳情</a>
                </span>
            </div>
            </template>
        </a-table>

    自定義的 pagination

     data(){ 
        return{
            data,
          columns, 
           currentPage:Number(sessionStorage.getItem('currentPage')) || 1,,
          pagination: 
          { 
                pageSize: 5, // 默認(rèn)每頁顯示數(shù)量
                defaultCurrent: Number(sessionStorage.getItem('currentPage')) || 1, // 默認(rèn)當(dāng)前頁數(shù)
                showSizeChanger: true, // 顯示可改變每頁數(shù)量
                pageSizeOptions: ['5', '10', '20', '50'], // 每頁數(shù)量選項(xiàng)
                showTotal: total => `Total ${total} items`, // 顯示總數(shù)
                showSizeChange: (current, pageSize) => this.pageSize = pageSize, // 改變每頁數(shù)量時(shí)更新顯示
             // 改變頁數(shù)時(shí)時(shí)觸發(fā)函數(shù)
                onChange: (current) => {
                    this.currentPage = current;     
                }
         }
      }
    },

    methods中的函數(shù)

    點(diǎn)擊進(jìn)入詳情函數(shù)

     //  點(diǎn)擊詳情事件
        ClickDetail(){
             sessionStorage.setItem('currentPage',this.currentPage) 
    //  下面是自己的具體的頁面邏輯,即跳轉(zhuǎn)路由的操作
             this.$route.xxxxxx
        }

    可以看到當(dāng)點(diǎn)擊詳情后,就把當(dāng)前的 頁面值 currentPage 存入了緩存中,可以仔細(xì)看上面自定義 pagination 的一些配置,它從緩存中取出 先前的頁面值 currentPage ,并把它當(dāng)做默認(rèn)頁面加載 ,那么現(xiàn)在可以看到這個(gè)問題就迎刃而解了

    關(guān)于“Ant Design Vue table組件怎么自定義分頁器”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Ant Design Vue table組件怎么自定義分頁器”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

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

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

    AI