Vue中使用element的el-table进行分页

该代码示例展示了在Vue项目中如何利用ElementUI的el-table组件实现分页表格,包括每页递增的序号功能。当删除一页数据后,会自动显示前一页的内容。主要涉及的组件有el-form、el-table、el-pagination,以及相关的事件处理如handleQuery、handleSizeChange、handleCurrentChange和deleteRow等。
摘要由CSDN通过智能技术生成

Vue 中使用element 的 el-table 进行分页,期间显示序号(每页序号进行递增)并且删除完后一页数据后自动显示前一页数据。如图:

直接上源码(注释比较清晰一目了然)

<template>
  <div class="app-container">
    <el-header>Header</el-header>
    <el-container>
      <el-aside width="60%">
        <el-form
          :model="queryParams"
          ref="queryForm"
          size="small"
          :inline="true"
          v-show="showSearch"
          label-width="68px"
        >
          <el-form-item label="条形码" prop="barCode">
            <el-input
              v-model="queryParams.barCode"
              placeholder="请输入条形码"
              clearable
              @keyup.enter.native="handleQuery"
            />
          </el-form-item>
          <el-form-item>
            <el-button
              type="primary"
              icon="el-icon-search"
              size="mini"
              @click="handleQuery"
              >搜索</el-button
            >
          </el-form-item>
        </el-form>
        <!-- 表格 -->
        <el-table
          :data="goodPriceList.slice((currentPage-1)*queryParams.pageSize,currentPage*queryParams.pageSize)"
          highlight-current-row
          @selection-change="handleSelectionChange"
        >
          <el-table-column type="selection" width="55" align="center" />
          <el-table-column  label="序号" type="index" width="50">
            <template slot-scope="scope">
              <span v-text="getIndex(scope.$index)"> </span>
            </template>
          </el-table-column>
          <el-table-column label="类别" align="center" prop="cateforyId">
            <template slot-scope="scope">
              <dict-tag
                :options="dict.type.category_type"
                :value="scope.row.categoryId"
              />
            </template>
          </el-table-column>
          <el-table-column label="商品名称" align="center" prop="goodsName" />
          <el-table-column label="数量" align="center" prop="num">
            <template slot-scope="scope">
              <el-input-number
                size="mini"
                v-model="scope.row.index"
                @change="handleChange"
                :min="1"
                label="购买数量"
              ></el-input-number>
            </template>
          </el-table-column>
          <el-table-column label="单位名称" align="center" prop="unit">
            <template slot-scope="scope">
              <dict-tag
                :options="dict.type.category_unit"
                :value="scope.row.unit"
              />
            </template>
          </el-table-column>
          <el-table-column label="单价(元)" align="center" prop="retailPrice" />
          <el-table-column label="总价(元)" align="center" prop="totalPrice">
            <template slot-scope="scope">
              {{ totalAmount(scope.row.index, scope.row.retailPrice) }}
            </template>
          </el-table-column>

          <el-table-column label="条形码" align="center" prop="barCode" />
          <el-table-column
            label="操作"
            align="center"
            class-name="small-padding fixed-width"
          >
            <template slot-scope="scope">
              <el-button
                @click.native.prevent="deleteRow(scope.$index, goodPriceList)"
                type="text"
                size="small"
              >
                移除
              </el-button>
            </template>
          </el-table-column>
        </el-table>
        <el-pagination
          background
          @size-change="handleSizeChange"
          @current-change="handleCurrentChange"
          :current-page="1"
          :page-sizes="[10,20,30,50]"
          layout="total, sizes, prev, pager, next, jumper"
          :total="total"
          :page.sync="queryParams.pageNum"
          :limit.sync="queryParams.pageSize"
        >
        </el-pagination>

      </el-aside>

      <el-container>
        <el-main>Main</el-main>
      </el-container>
    </el-container>
  </div>
</template>

<script>
import { listInfo } from "@/api/business/info";
export default {
  dicts: ["category_type", "category_unit"],
  data() {
    return {
     
      //当前页数
      currentPage:1,
      // 总条数
      total: 0,
      // 查询参数
      queryParams: {
      
        //每页显示条目个数
        pageSize: 10,
      },
      // 显示搜索条件
      showSearch: true,
      // 商品价格信息表格数据
      goodPriceList: [],
    };
  },

  methods: {
    //获取售货价
    getGoodsPrice() {
      listInfo(this.queryParams).then((response) => {
        //console.log(6,response.rows)
        this.goodPriceList.push({
          barCode: response.rows[0].barCode,
          buyingPrice: response.rows[0].buyingPrice,
          categoryId: response.rows[0].categoryId,
          index: "1",
          goodsName: response.rows[0].goodsName,
          id: response.rows[0].id,
          remark: response.rows[0].remark,
          retailPrice: response.rows[0].retailPrice,
          unit: response.rows[0].unit,
         
        });
        //this.goodPriceList = response.rows;
        //this.total = response.total;
        this.total = this.goodPriceList.length;
      });
    },
    //总金额
    totalAmount: function (agr1, agr2) {
      return agr1 * agr2;
    },

    //购买数量
    handleChange(value) {
      //console.log(value);
    },
    /** 搜索按钮操作 */
    handleQuery() {
      if (this.queryParams.barCode != "" && this.queryParams.barCode != null) {
        this.getGoodsPrice();
      }
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map((item) => item.id);
      this.single = selection.length !== 1;
      this.multiple = !selection.length;
    },
    //删除当前行数据
    deleteRow(index, rows) {
      const totalPage = Math.ceil((this.total -1 ) / this.queryParams.pageSize);
      console.log('总页数',totalPage,'当前页是:',this.currentPage)
      //当前页
      this.currentPage = this.currentPage > totalPage ? totalPage  : this.currentPage
      this.currentPage = this.currentPage < 1 ? 1 :this.currentPage
      rows.splice(index, 1);
      this.total = this.total - 1;

      
    },
    // 分页
    getIndex($index) {
      return (
        (this.currentPage - 1) * this.queryParams.pageSize + $index + 1
      );
    },
    //监听 pagesize 改变的事件
    handleSizeChange(val) {
      console.log(`每页 ${val} 条`);
      this.queryParams.pageSize = val;
    },
    //监听 页码值 改变的事件
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`);
      this.currentPage = val;
    },
  },
};
</script>


<style>
.el-input-number--mini {
  width: 100px;
}
.el-header,
.el-footer {
  /* background-color: #b3c0d1; */
  color: #333;
  text-align: center;
  line-height: 60px;
}

.el-aside {
  /* background-color: #d3dce6;
  color: #333; */
  text-align: center;
  /* line-height: 200px; */
  margin-bottom: 0px;
  
}

.el-main {
  /* background-color: #e9eef3;
  color: #333; */
  text-align: center;
  line-height: 160px;
}



body > .el-container {
  margin-bottom: 40px;
}
</style>

`vue-seamless-scroll` 是一个用于 Vue.js 的库,它能够实现无缝滚动效果,尤其适用于列表数据较多时的场景。而 `el-table` 是 Element UI 组件库的一个表格组件,它提供了丰富的数据展示和操作功能,包括分页。 当你需要在 `vue-seamless-scroll` 使用分页数据时,可以按照以下步骤进行: 1. 首先确保已经在项目安装并引入了 `vue-seamless-scroll` 和 `el-table` 相关组件。 2. 准备你的分页数据,通常这会是一个对象,包含当前页的数据列表 `list`,以及分页相关的属性,如总记录数 `total`、当前页码 `currentPage` 和每页显示数量 `pageSize`。 3. 在模板使用 `el-table` 来展示数据,并且根据分页数据动态设置其 `data` 属性。 4. 使用 `vue-seamless-scroll` 包裹 `el-table` 组件,确保无缝滚动效果应用在表格上。 5. 通过监听分页器的事件来动态更新 `vue-seamless-scroll` 的数据。当分页变化时,你需要更新 `el-table` 所使用的数据列表。 6. 确保 `vue-seamless-scroll` 组件能够正确地接收到数据更新,并且无缝滚动效果得以保持。 示例代码可能如下: ```html <template> <div> <seamless-scroll class="scroll-container" :data="tableData"> <el-table :data="tableData.list"> <!-- 表格列定义 --> <el-table-column prop="field1" label="字段1"></el-table-column> <el-table-column prop="field2" label="字段2"></el-table-column> <!-- ... --> </el-table> </seamless-scroll> <!-- 分页组件 --> <el-pagination layout="total, prev, pager, next" :total="tableData.total" :current-page="tableData.currentPage" :page-sizes="[50, 100, 150]" :page-size="tableData.pageSize" @size-change="handleSizeChange" @current-change="handleCurrentChange" /> </div> </template> <script> import SeamlessScroll from 'vue-seamless-scroll'; export default { components: { SeamlessScroll }, data() { return { // 分页数据 tableData: { list: [], total: 0, currentPage: 1, pageSize: 50 } }; }, methods: { fetchData(page = 1) { // 获取数据的逻辑 // 更新 tableData.list 和其他分页属性 }, handleSizeChange(newSize) { // 分页大小变化时触发 this.tableData.pageSize = newSize; this.fetchData(1); }, handleCurrentChange(newPage) { // 当前页变化时触发 this.fetchData(newPage); } }, mounted() { this.fetchData(); } }; </script> <style> .scroll-container { /* seamless-scroll 容器样式 */ } </style> ``` 在上述代码,我们定义了一个 `vue-seamless-scroll` 组件,并将其作为 `el-table` 的容器。当用户操作分页器时,会触发 `handleSizeChange` 和 `handleCurrentChange` 方法,这些方法会更新 `tableData` 的分页属性,并通过 `fetchData` 方法重新获取数据,以展示新页的内容。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值