fix(@vben/web-ele): 收敛流程监听选择弹窗表格类型

pull/365/head
XuZhiqiang 2026-06-19 10:56:10 +08:00
parent 15e274f812
commit 53053524f6
1 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
<script lang="ts" setup> <script lang="ts" setup>
import type { VxeGridPropTypes } from '#/adapter/vxe-table'; import type {
VxeGridPropTypes,
VxeTableGridOptions,
} from '#/adapter/vxe-table';
import type { BpmProcessListenerApi } from '#/api/bpm/processListener'; import type { BpmProcessListenerApi } from '#/api/bpm/processListener';
import { ref } from 'vue'; import { ref } from 'vue';
@ -50,7 +53,7 @@ const [Grid] = useVbenVxeGrid({
toolbarConfig: { toolbarConfig: {
enabled: false, enabled: false,
}, },
}, } as VxeTableGridOptions<BpmProcessListenerApi.ProcessListener>,
}); });
// Modal // Modal
@ -87,7 +90,7 @@ function handleSelect(row: BpmProcessListenerApi.ProcessListener) {
type: 'primary', type: 'primary',
link: true, link: true,
icon: 'lucide:pointer', icon: 'lucide:pointer',
onClick: handleSelect.bind(null, row as any), onClick: handleSelect.bind(null, row),
}, },
]" ]"
/> />