vue element el-table实现前端搜索分页

2022-07-25 09:56:35

项目一个需求,需要前端来分页并实现字段模糊匹配,使用以下方法,得以实现

搜索词

<el-input
              v-model="keyword"
              placeholder="输入要搜索的内容"
              clearable
              size="small"
            ><i slot="prefix" class="el-input__icon el-icon-search"></i></el-input>

table

 <el-table
            v-loading="loading"
            :data="数据.filter(数据 => !搜索词 || 数据.匹配字段.toLowerCase().includes(搜索词.toLowerCase())).slice((页码-1)*页条数,页码*页条数)"
          >

分页插件

<pagination v-show="rightConditionTotal>0" :total="数据.filter(数据 => !搜索词 || 数据.匹配字段.toLowerCase().includes(搜索词.toLowerCase())).slice((页码-1)*页条数,页码*页条数).length" :page.sync="rightConditionPageNum"
                      :limit.sync="dialogPageSize" layout="total, sizes, prev, pager, next"/>

在这里插入图片描述

  • 作者:码码ing
  • 原文链接:https://blog.csdn.net/qq_39387849/article/details/123233096
    更新时间:2022-07-25 09:56:35