Quellcode durchsuchen

item引用地址修改

zhangyu vor 5 Jahren
Ursprung
Commit
b011a2194a

+ 1 - 1
saga-web-big/package.json

@@ -42,6 +42,6 @@
         "typescript": "^3.9.3"
     },
     "dependencies": {
-        "@saga-web/graph": "2.1.76"
+        "@saga-web/graph": "2.1.77"
     }
 }

+ 1 - 1
saga-web-big/src/items/topology/SImageLegendItem.ts

@@ -1,6 +1,6 @@
 import { Legend } from "../../types/topology/Legend";
 import { SGraphItem } from "@saga-web/graph/lib";
-import { SLineItem } from "../SLineItem";
+import { SLineItem } from "../SLineItem"; // 图标item
 
 /**
  * 图例节点Item(图标类型)

+ 1 - 2
saga-web-big/src/items/topology/SImageMarkerItem.ts

@@ -1,6 +1,5 @@
 import { Marker } from "../../types/topology/Marker";
-import { SGraphItem } from "@saga-web/graph/lib";
-import { SImageItem } from "../SImageItem";
+import { SGraphItem, SImageItem } from "@saga-web/graph/lib";
 
 /**
  * 标识对象Item(图标类型)

+ 1 - 2
saga-web-big/src/items/topology/STextMarkerItem.ts

@@ -1,6 +1,5 @@
 import { Marker } from "../../types/topology/Marker";
-import { SGraphItem } from "@saga-web/graph/lib";
-import { STextItem } from "../STextItem";
+import { SGraphItem, STextItem } from "@saga-web/graph/lib";
 
 /**
  * 标识对象Item(文本类型)