<script lang="ts" setup>
|
import type {
|
VxeGridPropTypes,
|
VxeTableGridOptions,
|
} from '#/adapter/vxe-table';
|
import type { BpmProcessListenerApi } from '#/api/bpm/processListener';
|
|
import { ref } from 'vue';
|
|
import { useVbenModal } from '..\..\..\..\packages\effects\common-ui\src';
|
|
import { TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { getProcessListenerPage } from '#/api/bpm/processListener';
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
defineOptions({ name: 'ProcessListenerSelectModal' });
|
|
const emit = defineEmits<{
|
select: [listener: BpmProcessListenerApi.ProcessListener];
|
}>();
|
|
const listenerType = ref('');
|
|
// 配置 VxeGrid
|
const [Grid] = useVbenVxeGrid({
|
formOptions: {
|
schema: useGridFormSchema(),
|
},
|
gridOptions: {
|
columns: useGridColumns(),
|
showOverflow: true,
|
minHeight: 300,
|
proxyConfig: {
|
ajax: {
|
query: async ({ page }, formValues) => {
|
return await getProcessListenerPage({
|
pageNo: page.currentPage,
|
pageSize: page.pageSize,
|
type: listenerType.value,
|
...formValues,
|
});
|
},
|
},
|
} as VxeGridPropTypes.ProxyConfig,
|
rowConfig: {
|
keyField: 'id',
|
isHover: true,
|
},
|
toolbarConfig: {
|
enabled: false,
|
},
|
} as VxeTableGridOptions<BpmProcessListenerApi.ProcessListener>,
|
});
|
|
// 配置 Modal
|
const [Modal, modalApi] = useVbenModal({
|
showConfirmButton: false,
|
contentClass: 'bg-background-deep p-3',
|
onOpenChange: async (isOpen: boolean) => {
|
if (!isOpen) {
|
listenerType.value = '';
|
return;
|
}
|
const data = modalApi.getData<{ type: string }>();
|
if (data?.type) {
|
listenerType.value = data.type;
|
}
|
},
|
destroyOnClose: true,
|
});
|
|
// 选择监听器
|
function handleSelect(row: BpmProcessListenerApi.ProcessListener) {
|
emit('select', row);
|
modalApi.close();
|
}
|
</script>
|
|
<template>
|
<Modal class="w-4/5" title="请选择监听器">
|
<Grid>
|
<template #action="{ row }">
|
<TableAction
|
:actions="[
|
{
|
label: '选择',
|
type: 'link',
|
icon: 'lucide:pointer',
|
onClick: handleSelect.bind(null, row),
|
},
|
]"
|
/>
|
</template>
|
</Grid>
|
</Modal>
|
</template>
|