diff --git a/src/views/plugin/charts/antv/data.ts b/src/views/plugin/charts/antv/data.ts
index c8768edd..2ae05255 100644
--- a/src/views/plugin/charts/antv/data.ts
+++ b/src/views/plugin/charts/antv/data.ts
@@ -1,7 +1,7 @@
-import type { CustomGraphData } from './modules/antv-g6-flow';
+import type { CustomGraphData } from './modules/types';
// 日期可以自己随便设置,就是字符串展示,也可以修改为业务需要的字段
-export function getFlowDatas(): CustomGraphData {
+export function getFlowData(): CustomGraphData {
return {
nodes: [
{
diff --git a/src/views/plugin/charts/antv/index.vue b/src/views/plugin/charts/antv/index.vue
index 2727f7ec..bebde610 100644
--- a/src/views/plugin/charts/antv/index.vue
+++ b/src/views/plugin/charts/antv/index.vue
@@ -1,55 +1,63 @@
-
+
- 选中节点N5(需要自行处理选中事件,不会触发元素点击)
+ 选中节点N5(需要自行处理选中事件,不会触发元素点击)
添加节点并与Node5连线
removeNode('NN')">删除新添加的节点
removeNode('NX')">删除NodeX
diff --git a/src/views/plugin/charts/antv/modules/antv-flow.vue b/src/views/plugin/charts/antv/modules/antv-flow.vue
index 790ac1c1..f1364db0 100644
--- a/src/views/plugin/charts/antv/modules/antv-flow.vue
+++ b/src/views/plugin/charts/antv/modules/antv-flow.vue
@@ -1,15 +1,14 @@