vxe-table 实现在表头直接筛选,不是弹窗方式

vxe-table 实现表头筛选,不是弹窗方式,也不是表单;实现方式通过自定义表头插槽,自定义筛选模板来实现该功能。

官网:https://vxetable.cn/

效果

html 复制代码
<template>
  <div>
    <vxe-grid ref="gridRef" v-bind="gridOptions">
      <template #header_name="{ column }">
        <span v-for="(option, index) in column.filters" :key="index">
          <vxe-input v-model="option.data" style="width: 100%;" clearable @change="changeNameFilter(option)"></vxe-input>
        </span>
      </template>

      <template #header_sex="{ column }">
        <div v-for="(option, index) in column.filters" :key="index">
          <vxe-select v-model="option.data" :options="sexOptions" clearable @change="changeSexFilter(option)"></vxe-select>
        </div>
      </template>
    </vxe-grid>
  </div>
</template>

<script setup>
import { ref, reactive } from 'vue'

const gridRef = ref()

const sexOptions = ref([
  { label: 'Women', value: 'Women' },
  { label: 'Man', value: 'Man' }
])

const gridOptions = reactive({
  border: true,
  loading: false,
  height: 500,
  filterConfig: {
    showIcon: false
  },
  columns: [
    { type: 'seq', width: 70 },
    {
      title: 'Name',
      children: [
        {
          field: 'name',
          title: 'Name',
          width: 200,
          filters: [
            { data: '' }
          ],
          filterMethod ({ option, row, column }) {
            if (option.data) {
              return `${row[column.field]}`.indexOf(option.data) > -1
            }
            return true
          },
          slots: {
            header: 'header_name'
          }
        }
      ]
    },
    { field: 'role', title: 'Role' },
    {
      title: 'Sex',
      children: [
        {
          field: 'sex',
          width: 200,
          filters: [
            { data: '' }
          ],
          filterMethod ({ option, row, column }) {
            if (option.data) {
              return row[column.field] === option.data
            }
            return true
          },
          slots: {
            header: 'header_sex'
          }
        }
      ]
    },
    { field: 'age', title: 'Age' },
    { field: 'address', title: 'Address' }
  ],
  data: [
    { id: 10001, name: 'Test1', role: 'Develop', sex: 'Women', age: 28, address: 'test abc' },
    { id: 10002, name: 'Test2', role: 'Test', sex: 'Man', age: 22, address: 'Guangzhou' },
    { id: 10003, name: 'Test3', role: 'PM', sex: 'Women', age: 32, address: 'Shanghai' },
    { id: 10004, name: 'Test4', role: 'Designer', sex: 'Man', age: 24, address: 'Shanghai' },
    { id: 10005, name: 'Test5', role: 'Develop', sex: 'Women', age: 32, address: 'Shenzhen' },
    { id: 10006, name: 'Test6', role: 'Designer', sex: 'Women', age: 28, address: 'Shanghai' }
  ]
})

const changeNameFilter = (option) => {
  const $grid = gridRef.value
  if ($grid) {
    $grid.updateFilterOptionStatus(option, !!option.data)
    $grid.updateData()
  }
}

const changeSexFilter = (option) => {
  const $grid = gridRef.value
  if ($grid) {
    $grid.updateFilterOptionStatus(option, !!option.data)
    $grid.updateData()
  }
}
</script>

https://gitee.com/x-extends/vxe-table

相关推荐
桂月二二38 分钟前
探索前端开发中的 Web Vitals —— 提升用户体验的关键技术
前端·ux
CodeClimb2 小时前
【华为OD-E卷 - 第k个排列 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
hunter2062062 小时前
ubuntu向一个pc主机通过web发送数据,pc端通过工具直接查看收到的数据
linux·前端·ubuntu
qzhqbb2 小时前
web服务器 网站部署的架构
服务器·前端·架构
刻刻帝的海角2 小时前
CSS 颜色
前端·css
浪浪山小白兔3 小时前
HTML5 新表单属性详解
前端·html·html5
lee5763 小时前
npm run dev 时直接打开Chrome浏览器
前端·chrome·npm
2401_897579653 小时前
AI赋能Flutter开发:ScriptEcho助你高效构建跨端应用
前端·人工智能·flutter
光头程序员4 小时前
grid 布局react组件可以循数据自定义渲染某个数据 ,或插入某些数据在某个索引下
javascript·react.js·ecmascript
limit for me4 小时前
react上增加错误边界 当存在错误时 不会显示白屏
前端·react.js·前端框架