Element 表格 + 分页器实现前端分页
<template>
<!--表格-->
<el-table
         :data="Table.slice((teacher_currentPage - 1) * teacher_pagesize,teacher_currentPage * teacher_pagesize)"
         style="width: 100%">
         <el-table-column
           prop="name"
           label="姓名"
           align="center"
           width="">
         </el-table-column>
       </el-table>
<!--分页器-->
       <el-pagination
         background
         layout="total, sizes, prev, pager, next, jumper"
         :page-sizes="[10, 15, 20, 30]"
         :page-size="pagesize"
         :current-page="currentPage"
         @current-change="currentFy"
         @size-change="handleSizeChange"
         :total="Table.length"
       >
       </el-pagination>
</template>
<script>
export.default {
       data(){
           return{
               Table:[{}],
               pagesize:10, // 每页显示的条数
               currentPage:1 // 显示当前页数
          }
      },
       methods:{
           currentFy(currentPage){
               this.currentPage = currentPage;
          },
           handleSizeChange(size) {
             this.pagesize = size;
          },
      }
  }
</script>

值得注意的是 Table 的初始化数据里,要保留一条信息, 如果数组为空,则 slice 操作符会报错

暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇