Bläddra i källkod

big:fix:管道item暴露

haojianlong 4 år sedan
förälder
incheckning
deebce1783
2 ändrade filer med 4 tillägg och 2 borttagningar
  1. 3 1
      persagy-web-big/src/index.ts
  2. 1 1
      persagy-web-big/src/items/SPipeItem.ts

+ 3 - 1
persagy-web-big/src/index.ts

@@ -46,6 +46,7 @@ import { SArrowPoly } from "./items/SArrowPoly";
 import getJsonz from "./utils/getJsonz";
 import unzip from "./utils/unzip";
 import unzipBase64 from "./utils/unzipBase64";
+import { SPipeItem } from "./items/SPipeItem";
 
 export {
     SLayerItem,
@@ -69,5 +70,6 @@ export {
     SArrowPoly,
     getJsonz,
     unzip,
-    unzipBase64
+    unzipBase64,
+    SPipeItem
 };

+ 1 - 1
persagy-web-big/src/items/SPipeItem.ts

@@ -36,7 +36,7 @@ import { SRelation } from "../enums/SRelation";
  *
  * @author 韩耀龙 <han_yao_long@163.com>
  */
-export class SBasePipe extends SPolylineItem {
+export class SPipeItem extends SPolylineItem {
     //属性
     /** 关系型数据 */
     _relationData: SRelation | null = null;