refactor: 适配新工作流预览 由logicflow改为iframe 真服了

This commit is contained in:
dap
2025-05-29 19:30:57 +08:00
parent 2141c93399
commit 8d6ef40d3e
13 changed files with 32 additions and 585 deletions

View File

@@ -0,0 +1,28 @@
<script setup lang="ts">
import { useAppConfig } from '@vben/hooks';
import { stringify } from '@vben/request';
import { useAccessStore } from '@vben/stores';
defineOptions({ name: 'FlowPreview' });
const props = defineProps<{ instanceId: string }>();
const { clientId } = useAppConfig(import.meta.env, import.meta.env.PROD);
const accessStore = useAccessStore();
const params = {
Authorization: `Bearer ${accessStore.accessToken}`,
id: props.instanceId,
clientid: clientId,
type: 'FlowChart',
};
/**
* iframe地址
*/
const url = `${import.meta.env.VITE_GLOB_API_URL}/warm-flow-ui/index.html?${stringify(params)}`;
</script>
<template>
<iframe :src="url" class="h-[500px] w-full border"></iframe>
</template>