1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| <script lang="ts" setup>
| import { useVbenModal } from '@vben/common-ui';
|
| import { useVbenVxeGrid } from '#/adapter/vxe-table';
|
| import { useGridColumns } from './task-list-data';
|
| const [Grid, gridApi] = useVbenVxeGrid({
| gridOptions: {
| columns: useGridColumns(),
| border: true,
| height: 'auto',
| rowConfig: {
| keyField: 'id',
| },
| pagerConfig: {
| enabled: false,
| },
| toolbarConfig: {
| enabled: false,
| },
| },
| });
|
| const [Modal, modalApi] = useVbenModal({
| footer: false,
| async onOpenChange(isOpen: boolean) {
| if (!isOpen) {
| return;
| }
|
| modalApi.lock();
| try {
| const data = modalApi.getData<any[]>();
| // 填充列表数据
| gridApi.setGridOptions({ data });
| } finally {
| modalApi.unlock();
| }
| },
| });
| </script>
|
| <template>
| <Modal class="w-3/4">
| <Grid />
| </Modal>
| </template>
|
|