gaoluyang
2026-06-24 b9a81d64cc965102c2adb70dee1d5a7397da5716
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
<script lang="ts" setup>
import { useVbenModal } from '../../../../../../../packages/effects/common-ui/src';
 
import { useVbenVxeGrid } from '#/adapter/vxe-table';
 
import { useGridColumns } from './process-instance-data';
 
const [Grid, gridApi] = useVbenVxeGrid({
  gridOptions: {
    columns: useGridColumns(),
    border: true,
    height: 'auto',
    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>