el-table按照查询条件再对应行数据进行高亮,并可以定位到某行

需求:输入查询条件 点查询,满足模糊查询,将符合的数据筛选出来 并进行定位

html 复制代码
      <div style="display: flex">
        <el-input v-model="searchData.content" clearable placeholder="零件特征" style="width: 12%;" />
        <el-input v-model="searchData.searchPara" clearable placeholder="扭矩值" style="width: 12%;" />
        <el-button
          icon="el-icon-search"
          @click="
            page = 1
            handlesearch()
          "
        />
      </div>
      <!-- 表格 -->
      <div class="tableDiv">
        <el-table
          ref="tableD"
          :data="tableData"
          :header-cell-style="{ background: '#F5F7FA', height: '30px' }"
          style="width: 100%; margin: 0 auto"
          height="100%"
          align="center"
          row-key="id"
          stripe
          border
          highlight-current-row
          :row-class-name="tableRowClassName"
          @select="handleSelectRow"
          @row-dblclick="handleRowClick"
        >
          <el-table-column type="selection" width="40" fixed />
          <el-table-column
            v-for="(item, index) in viewColumns"
            :key="index"
            :fixed="item.fixed"
            :prop="item.prop"
            :align="item.align"
            :label="item.label"
            :min-width="item.width"
            :show-overflow-tooltip="true"
          />
        </el-table>
      </div>
javascript 复制代码
   // 查询的--- > 是做定位 并且红色的数据 不变,oldPartFeature只是一个记录的作用
    handlesearch() {
      if (this.searchData.content == '' && this.searchData.searchPara == '') return this.$message.warning('请输入查询值!')
      if (this.searchData.content && this.searchData.searchPara) {
        // 两个值都存在的情况下
        this.tableSearch()
      } else if (this.searchData.content && this.searchData.searchPara == '') {
        this.tableSearchContent()
      } else if (this.searchData.searchPara && this.searchData.content == '') {
        this.tableSearchPara()
      }
    },
    tableSearch() {
      const filterList = this.tableData.filter((item) => item?.part_feature.includes(this.searchData.content) && item?.make_mid.includes(this.searchData.searchPara))
      if (filterList.length == 0) return this.$message.warning('无匹配项')
      if (this.oldPartFeature == '' || this.oldPartFeature !== this.searchData.content || this.oldPartFeature !== this.searchData.searchPara) {
        this.oldPartFeature = JSON.parse(JSON.stringify(this.searchData.content || this.searchData.searchPara))
        this.ind = 0
      } else {
        if (this.ind >= filterList.length - 1) {
          this.idx = 0
        }
        this.tablelocation(filterList[this.idx])
        this.idx++
      }
    },
    tableSearchContent() {
      const filterList = this.tableData.filter((item) => item?.part_feature.includes(this.searchData.content))
      if (filterList.length == 0) return this.$message.warning('无匹配项')
      if (this.oldPartFeature == '' || this.oldPartFeature !== this.searchData.content) {
        this.oldPartFeature = JSON.parse(JSON.stringify(this.searchData.content))
        this.ind = 0
      } else {
        if (this.ind >= filterList.length - 1) {
          this.idx = 0
        }
        this.tablelocation(filterList[this.idx])
        this.idx++
      }
    },
    tableSearchPara() {
      const filterList = this.tableData.filter((item) => item.make_mid ? item.make_mid.includes(this.searchData.searchPara) : '')
      if (filterList.length == 0) return this.$message.warning('无匹配项')
      if (this.oldPartFeature == '' || this.oldPartFeature !== this.searchData.searchPara) {
        this.oldPartFeature = JSON.parse(JSON.stringify(this.searchData.searchPara))
        this.ind = 0
      } else {
        if (this.ind >= filterList.length - 1) {
          this.idx = 0
        }
        this.tablelocation(filterList[this.idx])
        this.idx++
      }
    },
//定位高亮
    tablelocation(data) {
      this.$refs.tableD.setCurrentRow(data)
      const rowIndex = this.tableData.findIndex((item) => {
        return item.id == data.id
      })
      const tableWrapperEL = this.$refs.tableD.bodyWrapper
      const EL = this.$refs.tableD.bodyWrapper.querySelectorAll('tbody tr')[rowIndex]
      const ELOffsetTop = EL.offsetTop
      console.log(tableWrapperEL)
      tableWrapperEL.scrollTo({
        left: 0,
        top: ELOffsetTop,
        behavior: 'smooth'
      })
    },
相关推荐
待磨的钝刨11 分钟前
【格式化查看JSON文件】coco的json文件内容都在一行如何按照json格式查看
开发语言·javascript·json
Devil枫4 小时前
Vue 3 单元测试与E2E测试
前端·vue.js·单元测试
GIS程序媛—椰子5 小时前
【Vue 全家桶】6、vue-router 路由(更新中)
前端·vue.js
前端青山5 小时前
Node.js-增强 API 安全性和性能优化
开发语言·前端·javascript·性能优化·前端框架·node.js
毕业设计制作和分享6 小时前
ssm《数据库系统原理》课程平台的设计与实现+vue
前端·数据库·vue.js·oracle·mybatis
程序媛小果6 小时前
基于java+SpringBoot+Vue的旅游管理系统设计与实现
java·vue.js·spring boot
从兄6 小时前
vue 使用docx-preview 预览替换文档内的特定变量
javascript·vue.js·ecmascript
凉辰7 小时前
设计模式 策略模式 场景Vue (技术提升)
vue.js·设计模式·策略模式
清灵xmf7 小时前
在 Vue 中实现与优化轮询技术
前端·javascript·vue·轮询
薛一半9 小时前
PC端查看历史消息,鼠标向上滚动加载数据时页面停留在上次查看的位置
前端·javascript·vue.js