63 lines
1.3 KiB
Vue
63 lines
1.3 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeGridProps } from '#/adapter';
|
|
|
|
import { Page } from '@vben/common-ui';
|
|
|
|
import { Button } from 'ant-design-vue';
|
|
|
|
import { useVbenVxeGrid } from '#/adapter';
|
|
|
|
import { MOCK_TREE_TABLE_DATA } from './table-data';
|
|
|
|
interface RowType {
|
|
date: string;
|
|
id: number;
|
|
name: string;
|
|
parentId: null | number;
|
|
size: number;
|
|
type: string;
|
|
}
|
|
|
|
const gridOptions: VxeGridProps<RowType> = {
|
|
columns: [
|
|
{ type: 'seq', width: 70 },
|
|
{ field: 'name', minWidth: 300, title: 'Name', treeNode: true },
|
|
{ field: 'size', title: 'Size' },
|
|
{ field: 'type', title: 'Type' },
|
|
{ field: 'date', title: 'Date' },
|
|
],
|
|
data: MOCK_TREE_TABLE_DATA,
|
|
pagerConfig: {
|
|
enabled: false,
|
|
},
|
|
treeConfig: {
|
|
parentField: 'parentId',
|
|
rowField: 'id',
|
|
transform: true,
|
|
},
|
|
};
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({ gridOptions });
|
|
|
|
const expandAll = () => {
|
|
gridApi.grid?.setAllTreeExpand(true);
|
|
};
|
|
|
|
const collapseAll = () => {
|
|
gridApi.grid?.setAllTreeExpand(false);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<Page>
|
|
<Grid>
|
|
<template #toolbar-tools>
|
|
<Button class="mr-2" type="primary" @click="expandAll">
|
|
展开全部
|
|
</Button>
|
|
<Button type="primary" @click="collapseAll"> 折叠全部 </Button>
|
|
</template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|