el-table + el-pagination 前端实现分页操作

el-table + el-pagination 前端实现分页操作

后端返回全部列表数据,前端进行分页操作

html代码
javascript 复制代码
<div>
  <el-table :data="tableData" border>
    <el-table-column label="序号" type="index" width="50" />
    <el-table-column prop="name" label="礼品名称">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.itemName }}
      </template>
    </el-table-column>
    <el-table-column prop="orderNum" label="订单编号" width="120">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.orderNum }}
      </template>
    </el-table-column>
    <el-table-column prop="name" label="物流编号" width="130">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.expressCode }}
      </template>
    </el-table-column>
    <el-table-column prop="name" label="礼品单价" width="80">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.unitPrice }}
      </template>
    </el-table-column>
    <el-table-column prop="name" label="礼品数量" width="80">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.quantity }}
      </template>
    </el-table-column>
    <el-table-column prop="name" label="订单金额" width="80">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.price }}
      </template>
    </el-table-column>
    <el-table-column prop="name" label="订单日期" width="130">
      <template slot-scope="scope">
        {{ scope.row.orderInfo.orderDate }}
      </template>
    </el-table-column>
    <el-table-column prop="isError" label="是否成功" width="80">
      <template slot-scope="scope">
        {{ scope.row.isError ? '否' : '是' }}
      </template>
    </el-table-column>
    <el-table-column prop="errorInfo" label="错误信息">
      <template slot-scope="scope">
        {{ scope.row.errorInfo }}
      </template>
    </el-table-column>
  </el-table>

  <el-pagination
    :total="total"
    :current-page="page"
    :page-size="size"
    :page-sizes="pageSizes"
    layout="total, sizes, prev, pager, next, jumper"
    @size-change="sizeChange"
    @current-change="currentChange"
  />
</div>
js代码

两种方式:

① slice

② splice

javascript 复制代码
<script>
export default {
  name: 'ImportLog',
  data() {
    return {
      page: 1, // 第几页
      size: 20, // 一页多少条
      total: 0, // 总条目数
      pageSizes: [20, 40, 60, 80, 100, 120, 140, 160, 180, 200], // 可选择的一页多少条
      tableData: [], // 表格绑定的数据
      allData: [], // 全部数据
    }
  },
  created() {
    this.getTabelData2()
  },
  methods: {
    // 获取表格数据,自行分页(slice)
    getTabelData() {
      // allData为全部数据
      this.tableData = this.allData.slice(
        (this.page - 1) * this.size,
        this.page * this.size
      )
      this.total = this.allData.length
    },
    // 获取表格数据,自行分页(splice)
    getTabelData2() {
      const data = JSON.parse(JSON.stringify(this.allData))
      this.tableData = data.splice(
        (this.page - 1) * this.size,
        this.size
      )
      this.total = this.allData.length
    },
    // page改变时的回调函数,参数为当前页码
    currentChange(val) {
      this.page = val
      this.getTabelData2()
    },
    // size改变时回调的函数,参数为当前的size
    sizeChange(val) {
      this.size = val
      this.page = 1
      this.getTabelData2()
    }
  }
}
</script>
相关推荐
kite01213 小时前
浏览器工作原理06 [#]渲染流程(下):HTML、CSS和JavaScript是如何变成页面的
javascript·css·html
крон3 小时前
【Auto.js例程】华为备忘录导出到其他手机
开发语言·javascript·智能手机
coding随想5 小时前
JavaScript ES6 解构:优雅提取数据的艺术
前端·javascript·es6
年老体衰按不动键盘5 小时前
快速部署和启动Vue3项目
java·javascript·vue
小小小小宇5 小时前
一个小小的柯里化函数
前端
灵感__idea5 小时前
JavaScript高级程序设计(第5版):无处不在的集合
前端·javascript·程序员
小小小小宇5 小时前
前端双Token机制无感刷新
前端
小小小小宇5 小时前
重提React闭包陷阱
前端
小小小小宇6 小时前
前端XSS和CSRF以及CSP
前端
UFIT6 小时前
NoSQL之redis哨兵
java·前端·算法