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

相关推荐
数研小生13 分钟前
Full Analysis of Taobao Item Detail API taobao.item.get
java·服务器·前端
Shirley~~23 分钟前
Vue-skills的中文文档
前端·人工智能
毎天要喝八杯水32 分钟前
搭建vue前端后端环境
前端·javascript·vue.js
计算机程序设计小李同学1 小时前
幼儿园信息管理系统的设计与实现
前端·bootstrap·html·毕业设计
雨季6661 小时前
Flutter 三端应用实战:OpenHarmony “极简手势轨迹球”——指尖与屏幕的诗意对话
开发语言·javascript·flutter
雨季6661 小时前
Flutter 三端应用实战:OpenHarmony “专注时光盒”——在碎片洪流中守护心流的数字容器
开发语言·前端·安全·flutter·交互
tao3556672 小时前
【用AI学前端】HTML-02-HTML 常用标签(基础)
前端·html
2601_949532842 小时前
Psello HTML Template: A Developer‘s Deep-Dive Review and Guide - Download Free
前端·windows·html·seo·wordpress·gpl
CappuccinoRose2 小时前
CSS前端布局总指南
前端·css·学习·布局·flex布局·grid布局·float布局
摘星编程2 小时前
OpenHarmony环境下React Native:Tooltip自动定位
javascript·react native·react.js