Skip to content

Vue 分组

通过 groupConfig 按字段分组展示数据,支持多级分组与展开/收起。

使用的 API

ts
type Column = {
  key: string;  // 列标识(必填)
  title: string;  // 列标题(必填)
  width: number;  // 列宽(必填)
}

type Options = {
  list: T[];  // 数据列表
  itemKey: string;  // 行唯一标识字段名
  estimatedSize: number;  // 行预估高度(px)
  buffer: number;  // 缓冲区行数
  border: boolean;  // 是否显示边框
  groupConfig: { field: string; sort?: 'asc' | 'desc' }[];  // 分组配置
  defaultExpandAll: boolean;  // 默认展开所有展开行
}

示例

微应用尚未挂载。

源码

点击查看源码
vue
<template>
  <div class="demo-wrapper">
    <h3 class="demo-title">Vue 分组</h3>
    <div class="virt-table-controls">
      <button
        type="button"
        class="virt-table-btn"
        style="background: #10b981; color: #fff"
        @click="expandAll"
      >
        全部展开
      </button>
      <button
        type="button"
        class="virt-table-btn"
        style="background: #6b7280; color: #fff"
        @click="collapseAll"
      >
        全部收起
      </button>
    </div>
    <div class="status-text">{{ status }}</div>
    <div style="width: 800px; height: 600px" class="demo-container">
      <VirtTableVue ref="tableRef" :columns="columns" :options="options" />
    </div>
  </div>
</template>

<script setup lang="ts">
import { ref } from 'vue';
import { VirtTableVue, type VueTableColumn } from '@virt-table/vue';
import { faker } from '@faker-js/faker';
import type { VirtTableVueInstance } from '../../virt-table-ref';

type TableRef = VirtTableVueInstance & {
  expandAll: () => void;
  collapseAll: () => void;
};

const depts = ['工程部', '设计部', '市场部', '财务部'];
const teamNames = ['Alpha', 'Beta', 'Gamma'];
const groupRows = Array.from({ length: 200 }, (_, i) => ({
  id: i,
  name: faker.person.fullName(),
  department: depts[i % depts.length],
  team: teamNames[i % teamNames.length],
  score: Math.floor(Math.random() * 100),
}));

const columns: VueTableColumn[] = [
  { key: 'name', title: '姓名', width: 180 },
  { key: 'department', title: '部门', width: 120 },
  { key: 'team', title: '小组', width: 120 },
  { key: 'score', title: '分数', width: 100 },
];

const options = {
  list: groupRows,
  itemKey: 'id',
  estimatedSize: 40,
  buffer: 4,
  groupConfig: [{ field: 'department' }, { field: 'team' }],
  defaultExpandAll: true,
  border: true,
};

const tableRef = ref<TableRef | null>(null);
const status = ref('');

const expandAll = () => {
  tableRef.value?.expandAll();
  status.value = '全部展开';
};

const collapseAll = () => {
  tableRef.value?.collapseAll();
  status.value = '全部收起';
};

status.value = '分组:200 行';
</script>