YaolongHan 4 年之前
父节点
当前提交
499c85f2c1

+ 2 - 1
src/components/editClass/big-edit/BigEditFactory.ts

@@ -23,7 +23,8 @@
  *
  * *********************************************************************************************************************
  */
-import { Marker, SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseExpainEdit, SBasePolygonEdit, SBaseRectEdit } from "./"
+import { SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseRectEdit, SBasePolygonEdit } from "./../edit";
+import { Marker, SBaseExpainEdit } from "./"
 import { SItemFactory } from "@persagy-web/big"
 /**
  * item创建工厂

+ 7 - 46
src/components/editClass/big-edit/items/SBaseExpainEdit.ts

@@ -37,43 +37,8 @@ import { ItemOrder } from '@persagy-web/big/lib';
 export class SBaseExpainEdit extends SBaseTextEdit {
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
-    /**编辑相关操作的数据 */
-    data: Marker
-
     constructor(parent: SGraphItem | null, data: Marker) {
-        super(parent);
-        this.data = data;
-        this.zOrder = ItemOrder.textOrder;
-        this.isTransform = false;
-        this.data = data;
-        this.name = data.Name;
-        this.moveTo(data.Pos.X, data.Pos.Y);
-        if (data.Size) {
-            this.width = data.Size.Width;
-            this.height = data.Size.Height;
-        }
-        if (data.Style && data.Style.Default) {
-            // 高度
-            if (data.Style.Default.Zorder) {
-                this.zOrder = data.Style.Default.Zorder;
-            }
-            // 文本
-            if (data.Style.Default.Text) {
-                this.text = data.Style.Default.Text;
-            }
-            // 文本颜色
-            if (data.Style.Default.Color) {
-                this.color = new SColor(data.Style.Default.Color);
-            }
-            // 字体大小
-            if (data.Style.Default.Font) {
-                this.font = new SFont("sans-serif", data.Style.Default.Font);;
-            }
-            // 背景色
-            if (data.Style.Default.BackgroundColor) {
-                this.backgroundColor = new SColor(data.Style.Default.BackgroundColor);
-            }
-        }
+        super(parent, data);
     }
     /**
      * 鼠标按下事件
@@ -86,16 +51,12 @@ export class SBaseExpainEdit extends SBaseTextEdit {
         return true;
     } // Function onMouseDown()
 
+    /**
+    * 返回对象储存的相关数据
+    *
+    * @return	formData
+    */
     toData(): any {
-        if (this.data.Size) {
-            this.data.Size.Width = this.width
-            this.data.Size.Height = this.height;
-        }
-        this.data.Style.Default.Zorder = this.zOrder;
-        this.data.Style.Default.Text = this.text;
-        this.data.Style.Default.Color = this.color.value;
-        this.data.Style.Default.Font = this.font.size;
-        this.data.Style.Default.BackgroundColor = this.backgroundColor.value;
-        return this.data
+        return super.toData()
     }
 }

+ 3 - 3
src/components/editClass/big-edit/types/ElementData.ts

@@ -36,7 +36,7 @@ import { Relation } from "./Relation";
  * @author  张宇
  */
 export interface ElementData {
-    Nodes: Legend[];
-    Markers: Marker[];
-    Relations: Relation[];
+    nodes: Legend[];
+    markers: Marker[];
+    relations: Relation[];
 } // Interface ElementData

+ 9 - 9
src/components/editClass/big-edit/types/Marker.ts

@@ -36,21 +36,21 @@ import { Size } from "@persagy-web/big/lib/types/Size";
  */
 export interface Marker {
     /** ID */
-    ID?: string;
+    iD?: string;
     /** 名称  */
-    Name: string;
+    name: string;
     /** 图标(Image),线类型(Line) */
-    Type: string;
+    type: string;
     /** 位置  */
-    Pos: Point;
+    pos: Point;
     /** 缩放  */
-    Scale?: Point;
+    scale?: Point;
     /** 旋转  */
-    Rolate?: Point;
+    rolate?: Point;
     /** 大小  */
-    Size?: Size;
+    size?: Size;
     /** 绘制时得数据以及样式 */
-    Style:any;
+    style: any;
     /** 由应用自己定义  */
-    Properties?: any;
+    properties?: any;
 } // Interface Marker

+ 2 - 1
src/components/editClass/edit/index.ts

@@ -28,6 +28,7 @@ import { SGraphEditScene } from "./SGraphEditScene";
 import { SBaseArrowEdit } from "./items/SBaseArrowEdit";
 import { SBaseLineEdit } from "./items/SBaseLineEdit";
 import { SBaseImageEdit } from "./items/SBaseImageEdit";
+import { SBasePolygonEdit } from "./items/SBasePolygonEdit";
 import { SBaseRectEdit } from "./items/SBaseRectEdit"
 import { SBaseCircleEdit } from "./items/SBaseCircleEdit";
 import { SBaseTriangleEdit } from "./items/SBaseTriangleEdit"
@@ -39,4 +40,4 @@ import { SGraphPointListDelete } from "./commands/SGraphPointListDelete";
 import { SGraphPointListInsert } from "./commands/SGraphPointListInsert";
 import { SGraphPointListUpdate } from "./commands/SGraphPointListUpdate";
 import { SGraphPropertyCommand } from "./commands/SGraphPropertyCommand";
-export { SBaseTextEdit, SBaseImageEdit, SBaseLineEdit, SBaseCircleEdit, SBaseTriangleEdit, SBaseRectEdit, SBaseArrowEdit, SGraphEditScene, SGraphEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand }
+export { SBasePolygonEdit, SBaseTextEdit, SBaseImageEdit, SBaseLineEdit, SBaseCircleEdit, SBaseTriangleEdit, SBaseRectEdit, SBaseArrowEdit, SGraphEditScene, SGraphEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand }

+ 15 - 6
src/components/editClass/edit/items/SBaseArrowEdit.ts

@@ -142,15 +142,14 @@ export class SBaseArrowEdit extends SGraphEdit {
    */
   constructor(parent: SGraphItem | null, data: Marker) {
     super(parent);
-    // this.showSelect = false;
-    super(parent);
+    this.showSelect = false;
     this.data = data;
     if (data.style && data.style.default) {
       // 关于顶点
       if (data.style.default.line) {
         let setPointList: SPoint[];
         setPointList = data.style.default.line.map(i => {
-          return new SPoint(i.X, i.Y)
+          return new SPoint(i.x, i.y)
         });
         this.line = setPointList;
       }
@@ -522,7 +521,17 @@ export class SBaseArrowEdit extends SGraphEdit {
     }
   } // Function onDraw()
 
-  toData() {
-    console.log(1230)
-  }
+  /**
+   * 返回对象储存的相关数据
+   *
+   * @return	formData
+   */
+  toData(): any {
+    const Line = [{ x: this.line[0].x, y: this.line[0].y }, { x: this.line[1].x, y: this.line[1].y }];
+    this.data.style.default.line = Line;
+    this.data.style.default.lineWidth = this.lineWidth;
+    this.data.style.default.lineStyle = this.lineStyle;
+    this.data.style.default.strokeColor = this.strokeColor;
+    return this.data
+  } // Function toData
 } // Class SArrowEdit

+ 22 - 10
src/components/editClass/edit/items/SBaseCircleEdit.ts

@@ -30,7 +30,8 @@ import {
   SLineStyle,
   SGraphItem, SGraphPointListInsert
 } from "@persagy-web/graph/";
-import { SGraphEdit } from ".."; import { Marker } from "../type/Marker";
+import { SGraphEdit } from "..";
+import { Marker } from "../type/Marker";
 /**
  * 折线编辑类
  *
@@ -122,7 +123,7 @@ export class SBaseCircleEdit extends SGraphEdit {
   constructor(parent: SGraphItem | null, data: Marker) {
     super(parent);
     this.data = data;
-    if (data.Style && data.style.default) {
+    if (data.style && data.style.default) {
       // 关于顶点
       if (data.style.default.line) {
         let setPointList: SPoint[];
@@ -161,15 +162,12 @@ export class SBaseCircleEdit extends SGraphEdit {
     this.update()
   }
 
-  toData() {
-    console.log(1230)
-  }
   /**
-     * 鼠标按下事件
-     *
-     * @param   event   鼠标事件
-     * @return  是否处理事件
-     * */
+   * 鼠标按下事件
+   *
+   * @param   event   鼠标事件
+   * @return  是否处理事件
+   * */
   onMouseDown(event: SMouseEvent): boolean {
     if (event.buttons == SMouseButton.LeftButton) {
       if (this.status == SItemStatus.Create) {
@@ -321,6 +319,20 @@ export class SBaseCircleEdit extends SGraphEdit {
   } // Function cancelOperate()
 
   /**
+   * 返回对象储存的相关数据
+   *
+   * @return	formData
+   */
+  toData(): any {
+    const Line = [{ x: this.line[0].x, y: this.line[0].y }, { x: this.line[1].x, y: this.line[1].y }];
+    this.data.style.default.line = Line;
+    this.data.style.default.lineWidth = this.lineWidth;
+    this.data.style.default.lineStyle = this.lineStyle;
+    this.data.style.default.strokeColor = this.strokeColor;
+    return this.data
+  }
+
+  /**
    * Item绘制操作
    *
    * @param   painter painter对象

+ 36 - 20
src/components/editClass/edit/items/SBaseImageEdit.ts

@@ -51,50 +51,50 @@ export class SBaseImageEdit extends SGraphEdit {
     private _showType: SImageShowType = SImageShowType.Full;
     get showType(): SImageShowType {
         return this._showType;
-    }
+    } //Get showType
     set showType(v: SImageShowType) {
         this._showType = v;
         this.computeImgSize();
         this.update();
-    }
+    } //Set showType
     /** 边框色 */
     private _strokeColor: SColor = SColor.Transparent;
     get strokeColor(): SColor {
         return this._strokeColor;
-    }
+    }  //Get strokeColor
     set strokeColor(v: SColor) {
         this._strokeColor = v;
         this.update();
-    }
+    } //Set strokeColor
 
     /** 边框宽度 */
     private _lineWidth: number = 1;
     get lineWidth(): number {
         return this._lineWidth;
-    }
+    } //Get lineWidth
     set lineWidth(v: number) {
         this._lineWidth = v;
         this.update();
-    }
+    } //Set lineWidth
     /** 原点位置    */
     private _originPosition: STextOrigin = STextOrigin.LeftTop;
     get originPosition(): STextOrigin {
         return this._originPosition;
-    }
+    } //Get originPosition
     set originPosition(v: STextOrigin) {
         this._originPosition = v;
         this.update();
-    }
+    } //Set originPosition
 
     /** 线条样式    */
     private _lineStyle: SLineStyle = SLineStyle.Solid;
     get lineStyle(): SLineStyle {
         return this._lineStyle;
-    }
+    } //Get lineStyle
     set lineStyle(v: SLineStyle) {
         this._lineStyle = v;
         this.update();
-    }
+    } //Set lineStyle
     /** 图片加载是否完成 */
     isLoadOver: boolean = false;
 
@@ -108,7 +108,7 @@ export class SBaseImageEdit extends SGraphEdit {
     private _url: string = "";
     get url(): string {
         return this._url;
-    }
+    } //Get url
     set url(v: string) {
         this._url = v;
         this.img = new Image();
@@ -133,7 +133,7 @@ export class SBaseImageEdit extends SGraphEdit {
             }
         };
         this.img.src = v;
-    }
+    }  //Set url
     /** 锚点list  */
     anchorList: SAnchorItem[] = [];
     /** 宽度  */
@@ -142,7 +142,7 @@ export class SBaseImageEdit extends SGraphEdit {
     origin = new SPoint();
     get width(): number {
         return this._width;
-    }
+    }//Get width
     set width(v: number) {
         if (v > 0) {
             if (v != this._width) {
@@ -154,13 +154,13 @@ export class SBaseImageEdit extends SGraphEdit {
                 );
             }
         }
-    }
+    } //Set width
 
     /** 高度  */
     private _height: number = 64;
     get height(): number {
         return this._height;
-    }
+    } //Get height
     set height(v: number) {
         if (v > 0) {
             if (v != this._height) {
@@ -172,12 +172,12 @@ export class SBaseImageEdit extends SGraphEdit {
                 );
             }
         }
-    }
+    } //Set height
     /**编辑状态 */
     protected _status: SItemStatus = SItemStatus.Normal;
     get status(): SItemStatus {
         return this._status;
-    }
+    } //Get status
     set status(value: SItemStatus) {
         const oldStatus = this._status;
         const newStatus = value;
@@ -185,7 +185,7 @@ export class SBaseImageEdit extends SGraphEdit {
         //状态变更触发事件
         this.$emit('StatusChange', oldStatus, newStatus)
         this.update();
-    }
+    } //Set status
 
     //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //函数
@@ -220,7 +220,7 @@ export class SBaseImageEdit extends SGraphEdit {
             }
             // 线颜色
             if (data.style.default.strokeColor) {
-                this.strokeColor = data.style.default.strokeColor
+                this.strokeColor = new SColor(data.style.default.strokeColor)
             }
             // 线样式
             if (data.style.default.lineStyle) {
@@ -236,7 +236,23 @@ export class SBaseImageEdit extends SGraphEdit {
      * return   any         针对item类型保持相应的格式
      */
     toData(): any {
-
+        if (this.data.size) {
+            this.data.size.width = this.width;
+            this.data.size.height = this.height;
+        } else {
+            const width = this.width;
+            const height = this.height;
+            this.data.size = {
+                width,
+                height,
+            }
+        }
+        this.data.style.default.zorder = this.zOrder;
+        this.data.style.default.url = this.url;
+        this.data.style.default.lineWidth = this.lineWidth;
+        this.data.style.default.strokeColor = this.strokeColor.value;
+        this.data.style.default.lineStyle = this.lineStyle;
+        return this.data
     }
 
     /**

+ 1 - 1
src/components/editClass/edit/items/SBaseLineEdit.ts

@@ -506,7 +506,7 @@ export class SBaseLineEdit extends SGraphEdit {
         this.data.style.default.line = Line;
         this.data.style.default.lineWidth = this.lineWidth;
         this.data.style.default.lineStyle = this.lineStyle;
-        this.data.style.default.strokeColor = this.strokeColor;
+        this.data.style.default.strokeColor = this.strokeColor.value;
         return this.data
     } // Function toData()
 

+ 24 - 16
src/components/editClass/edit/items/SBaseRectEdit.ts

@@ -42,12 +42,12 @@ export class SBaseRectEdit extends SGraphEdit {
   _status: SItemStatus = SItemStatus.Normal;
   get status(): SItemStatus {
     return this._status;
-  }
+  }  // Get status
   set status(v: SItemStatus) {
     this._status = v;
     this.undoStack.clear();
     this.update();
-  }
+  } // Set status
   width: number = 0;
   height: number = 0;
   /** 矩形两个对角 */
@@ -79,38 +79,38 @@ export class SBaseRectEdit extends SGraphEdit {
   _strokeColor: SColor = SColor.Black;
   get strokeColor(): SColor {
     return this._strokeColor;
-  }
+  }  // Get strokeColor
   set strokeColor(v: SColor) {
     this._strokeColor = v;
     this.update();
-  }
+  }   // Set strokeColor
   /** 填充色 */
   _fillColor: SColor = new SColor("#2196f3");
   get fillColor(): SColor {
     return this._fillColor;
-  }
+  } // Get fillColor
   set fillColor(v: SColor) {
     this._fillColor = v;
     this.update();
-  }
+  } // Set fillColor
   /** 边框样式 */
   _lineStyle: SLineStyle = SLineStyle.Solid;
   get lineStyle(): SLineStyle {
     return this._lineStyle;
-  }
+  } // Get lineStyle
   set lineStyle(v: SLineStyle) {
     this._lineStyle = v;
     this.update();
-  }
+  } // Set lineStyle
   /** 线条宽度    */
   _lineWidth: number = 1;
   get lineWidth(): number {
     return this._lineWidth;
-  }
+  } // Get lineWidth
   set lineWidth(v: number) {
     this._lineWidth = v;
     this.update();
-  }
+  } // Set lineWidth
   /** undo/redo堆栈 */
   private undoStack: SUndoStack = new SUndoStack();
   data: Marker
@@ -164,11 +164,11 @@ export class SBaseRectEdit extends SGraphEdit {
   }
 
   /**
-     * 鼠标按下事件
-     *
-     * @param   event   鼠标事件
-     * @return  是否处理事件
-     * */
+   * 鼠标按下事件
+   *
+   * @param   event   鼠标事件
+   * @return  是否处理事件
+   * */
   onMouseDown(event: SMouseEvent): boolean {
     if (event.buttons == SMouseButton.LeftButton) {
       if (this.status == SItemStatus.Create) {
@@ -322,7 +322,15 @@ export class SBaseRectEdit extends SGraphEdit {
   } // Function cancelOperate()
 
   toData() {
-    console.log(1230)
+    const Line: any = [];
+    this.line.forEach(item => {
+      Line.push({ x: item.x, y: item.y })
+    })
+    this.data.style.default.line = Line;
+    this.data.style.default.lineWidth = this.lineWidth;
+    this.data.style.default.lineStyle = this.lineStyle;
+    this.data.style.default.strokeColor = this.strokeColor.value;
+    return this.data
   }
 
   /**

+ 48 - 30
src/components/editClass/edit/items/SBaseTextEdit.ts

@@ -47,7 +47,7 @@ export class SBaseTextEdit extends SGraphEdit {
     protected _status: SItemStatus = SItemStatus.Normal;
     get status(): SItemStatus {
         return this._status;
-    }
+    } //Get status
     set status(value: SItemStatus) {
         const oldStatus = this._status;
         const newStatus = value;
@@ -55,7 +55,7 @@ export class SBaseTextEdit extends SGraphEdit {
         //状态变更触发事件
         this.$emit('StatusChange', oldStatus, newStatus)
         this.update();
-    }
+    } //Set status
     /** 记录painter */
     private _painter: SPainter | null = null;
 
@@ -63,13 +63,13 @@ export class SBaseTextEdit extends SGraphEdit {
     private _text: string = "";
     get text(): string {
         return this._text;
-    }
+    } //Get text
     set text(v: string) {
         this._text = v;
         this._textArr = this.text.split(/\n/g);
         this.drawFormatText();
         this.update();
-    }
+    } //Set text
 
     /** 切割后的文本数组 */
     private _textArr: string[] = [];
@@ -79,7 +79,7 @@ export class SBaseTextEdit extends SGraphEdit {
     private _width: number = 64;
     get width(): number {
         return this._width;
-    }
+    } //Get width
     set width(v: number) {
         if (v > 0) {
             if (v != this._width) {
@@ -91,13 +91,13 @@ export class SBaseTextEdit extends SGraphEdit {
                 );
             }
         }
-    }
+    } //Set width
 
     /** 高度  */
     private _height: number = 64;
     get height(): number {
         return this._height;
-    }
+    } //Get height
     set height(v: number) {
         if (v > 0) {
             if (v != this._height) {
@@ -109,7 +109,7 @@ export class SBaseTextEdit extends SGraphEdit {
                 );
             }
         }
-    }
+    } //Set height
 
     /** 原点  */
     origin = new SPoint();
@@ -126,73 +126,73 @@ export class SBaseTextEdit extends SGraphEdit {
     private _color: SColor = new SColor("#333333");
     get color(): SColor {
         return this._color;
-    }
+    } //Get color
     set color(v: SColor) {
         this._color = v;
         this.update();
-    }
+    } //Set color
 
     /** 字体 */
-    private _font: SFont;
+    private _font: SFont = new SFont("sans-serif", 12);
     get font(): SFont {
         return this._font;
-    }
+    } //Get font
     set font(v: SFont) {
         this._font = v;
         this.drawFormatText();
         this.update();
-    }
+    } //Set font
 
     /** 背景色 */
     private _backgroundColor: SColor = SColor.Transparent;
     get backgroundColor(): SColor {
         return this._backgroundColor;
-    }
+    } //Get backgroundColor
     set backgroundColor(v: SColor) {
         this._backgroundColor = v;
         this.update();
-    }
+    } //Set backgroundColor
 
     /** 边框色 */
     private _strokeColor: SColor = SColor.Transparent;
     get strokeColor(): SColor {
         return this._strokeColor;
-    }
+    } //Get strokeColor
     set strokeColor(v: SColor) {
         this._strokeColor = v;
         console.log(this._strokeColor)
         this.update();
-    }
+    } //Set strokeColor
 
     /** 边框宽度 */
     private _lineWidth: number = 1;
     get lineWidth(): number {
         return this._lineWidth;
-    }
+    } //Get lineWidth
     set lineWidth(v: number) {
         this._lineWidth = v;
         this.update();
-    }
+    } //Set lineWidth
 
     /** 边框样式    */
     private _borderStyle: SLineStyle = SLineStyle.None;
     get borderStyle(): SLineStyle {
         return this._borderStyle;
-    }
+    } //Get borderStyle
     set borderStyle(v: SLineStyle) {
         this._borderStyle = v;
         this.update();
-    }
+    } //Set borderStyle
 
     /** 原点位置    */
     private _originPosition: STextOrigin = STextOrigin.LeftTop;
     get originPosition(): STextOrigin {
         return this._originPosition;
-    }
+    } //Get originPosition
     set originPosition(v: STextOrigin) {
         this._originPosition = v;
         this.update();
-    }
+    } //Set originPosition
 
     /** 文本绘制最大宽 */
     maxWidth: number | undefined = undefined;
@@ -203,7 +203,7 @@ export class SBaseTextEdit extends SGraphEdit {
      * @param   parent      指向父Item
      * @param   str         文本内容
      */
-    constructor(parent: SGraphItem | null,data:Marker) {
+    constructor(parent: SGraphItem | null, data: Marker) {
         super(parent);
         this.showSelect = false;
         this.zOrder = ItemOrder.textOrder;
@@ -212,8 +212,8 @@ export class SBaseTextEdit extends SGraphEdit {
         this.name = data.name;
         this.moveTo(data.pos.x, data.pos.y);
         if (data.size) {
-            this.width = data.size.Width;
-            this.height = data.size.Height;
+            this.width = data.size.width;
+            this.height = data.size.height;
         }
         if (data.style && data.style.default) {
             // 高度
@@ -225,12 +225,12 @@ export class SBaseTextEdit extends SGraphEdit {
                 this.text = data.style.default.text;
             }
             // 文本颜色
-            if (data.style.default.color) {
-                this.color = new SColor(data.style.default.color);
+            if (data.style.default.strokeColor) {
+                this.strokeColor = new SColor(data.style.default.strokeColor);
             }
             // 字体大小
             if (data.style.default.font) {
-                this.font = new SFont("sans-serif", data.style.default.font);;
+                this.font = new SFont("sans-serif", data.style.default.font);
             }
             // 背景色
             if (data.style.default.backgroundColor) {
@@ -320,7 +320,7 @@ export class SBaseTextEdit extends SGraphEdit {
             this.width = textMaxWidth;
             this.height = fontSize * 1.25 * this._textArr.length + fontSize / 8;
             // 设置原点位置(默认左上角)
-            if (this.originPosition == STextOrigin.Centrum) {
+            if (this.originPosition == STextOrigin.entrum) {
                 this.origin = new SPoint(this.width / 2, this.height / 2);
             }
             this._painter.restore();
@@ -328,6 +328,24 @@ export class SBaseTextEdit extends SGraphEdit {
     } // Function drawFormatText()
 
     /**
+     * 返回对象储存的相关数据
+     *
+     * @return	formData
+     */
+    toData(): any {
+        if (this.data.size) {
+            this.data.size.width = this.width
+            this.data.size.height = this.height;
+        }
+        this.data.style.default.zorder = this.zOrder;
+        this.data.style.default.text = this.text;
+        this.data.style.default.strokeColor = this.strokeColor.value;
+        this.data.style.default.font = this.font.size;
+        this.data.style.default.backgroundColor = this.backgroundColor.value;
+        return this.data
+    } // Function toData()
+
+    /**
      * Item绘制操作
      *
      * @param   painter      绘画类

+ 22 - 22
src/components/editClass/edit/items/SBaseTriangleEdit.ts

@@ -113,28 +113,28 @@ export class SBaseTriangleEdit extends SGraphEdit {
   constructor(parent: SGraphItem | null, data: Marker) {
     super(parent);
     this.data = data;
-    // if (data.Style && data.Style.Default) {
-    //   // 关于顶点
-    //   if (data.Style.Default.Line) {
-    //     let setPointList: SPoint[];
-    //     setPointList = data.Style.Default.Line.map(i => {
-    //       return new SPoint(i.X, i.Y)
-    //     });
-    //     this.line = setPointList;
-    //   }
-    //   // 颜色
-    //   if (data.Style.Default.StrokeColor) {
-    //     this.strokeColor = new SColor(data.Style.Default.StrokeColor)
-    //   }
-    //   // 线宽
-    //   if (data.Style.Default.LineWidth) {
-    //     this.lineWidth = data.Style.Default.LineWidth
-    //   }
-    //   // 线样式
-    //   if (data.Style.Default.LineStyle) {
-    //     this.lineStyle = data.Style.Default.LineStyle
-    //   }
-    // }
+    if (data.style && data.style.default) {
+      // 关于顶点
+      if (data.style.default.Line) {
+        let setPointList: SPoint[];
+        setPointList = data.style.default.line.map(i => {
+          return new SPoint(i.x, i.y)
+        });
+        this.line = setPointList;
+      }
+      // 颜色
+      if (data.style.default.strokeColor) {
+        this.strokeColor = new SColor(data.style.default.strokeColor)
+      }
+      // 线宽
+      if (data.style.default.lineWidth) {
+        this.lineWidth = data.style.default.lineWidth
+      }
+      // 线样式
+      if (data.style.default.lineStyle) {
+        this.lineStyle = data.style.default.lineStyle
+      }
+    }
   } // Constructor
 
   /**

+ 32 - 20
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -31,11 +31,11 @@ import { BigEditFactory, Legend, Marker, Relation, ElementData } from "./../big-
  */
 export class PTopoParser extends SParser {
     /**图例节点 */
-    Nodes: any = [];  // 图例节点,所有与工程信息化相关的图例(图标类型与区域)
+    nodes: any = [];  // 图例节点,所有与工程信息化相关的图例(图标类型与区域)
     /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
-    Markers: any = [];
+    markers: any = [];
     /**  管线对象 */
-    Relations: any = [];
+    relations: any = [];
     constructor() {
         super(new BigEditFactory());
     }
@@ -47,49 +47,61 @@ export class PTopoParser extends SParser {
      * */
     parseData(data: ElementData): void {
         // 生成遍历基本图例
-        if (data.Markers && data.Markers.length) {
-            data.Markers.forEach((item) => {
+        if (data.markers && data.markers.length) {
+            data.markers.forEach((item) => {
                 this.addMarker(item);
             })
         }
 
         // 生成遍历Node图例
-        if (data.Nodes && data.Nodes.length) {
-            data.Nodes.forEach(() => {
+        if (data.nodes && data.nodes.length) {
+            data.nodes.forEach(() => {
 
             })
         }
         // 生成遍历关系图例
-        if (data.Relations && data.Relations.length) {
-            data.Relations.forEach(() => {
-
+        if (data.relations && data.relations.length) {
+            data.relations.forEach(() => {
             })
         }
 
     } // Function parseData()
     addMarker(data: Marker) {
         // 基础直线
-        if (data.Properties.Type == "BaseLine") {
-            this.Markers.push(this.factory.createBaseLineEdit(data))
+        if (data.properties.type == "BaseLine") {
+            this.markers.push(this.factory.createBaseLineEdit(data))
         }
         // 基础文字
-        if (data.Properties.Type == "BaseText") {
-            this.Markers.push(this.factory.createBaseTextEdit(data))
+        if (data.properties.type == "BaseText") {
+            this.markers.push(this.factory.createBaseTextEdit(data))
         }
         // 基础图片
-        if (data.Properties.Type == "BaseImage") {
-            this.Markers.push(this.factory.createBaseImageEdit(data))
+        if (data.properties.type == "BaseImage") {
+            this.markers.push(this.factory.createBaseImageEdit(data))
+        }
+        // 基础注释
+        if (data.properties.type == "BaseExplain") {
+            this.markers.push(this.factory.createBaseExpainEdit(data))
         }
         // 基础注释
-        if (data.Properties.Type == "BaseExplain") {
-            this.Markers.push(this.factory.createBaseExpainEdit(data))
+        if (data.properties.type == "BaseCircle") {
+            this.markers.push(this.factory.createBaseExpainEdit(data))
+        }
+        if (data.properties.type == "BaseArrow") {
+            this.markers.push(this.factory.createBaseExpainEdit(data))
+        }
+        if (data.properties.type == "BaseRect") {
+            this.markers.push(this.factory.createBaseExpainEdit(data))
+        }
+        if (data.properties.type == "BaseTriangle") {
+            this.markers.push(this.factory.createBaseExpainEdit(data))
         }
         // // 基础文字
-        // if (data.Properties.Type == "BaseText") {
+        // if (data.properties.type == "BaseText") {
         //     this.Markers.push(this.factory.createBaseTextEdit(data))
         // }
         // // 基础图片
-        // if (data.Properties.Type == "BaseImage") {
+        // if (data.properties.type == "BaseImage") {
         //     this.Markers.push(this.factory.createBaseImageEdit(data))
         // }
     }

+ 39 - 38
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -1,6 +1,6 @@
 import { SBaseEditScene, SBaseExpainEdit, SBaseEquipment } from "./../big-edit";
 import { SBaseRectEdit, SBaseLineEdit, SBaseTextEdit, SGraphEdit, SBaseArrowEdit, SBaseCircleEdit, SBaseTriangleEdit } from "./../edit";
-// import { SPersagyImageEdit } from "./"
+import { SPersagyImageEdit } from "./"
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
 import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
@@ -8,7 +8,7 @@ import { rgbaNum } from "./../big-edit/until";
 
 // 引入命令
 import { SGraphAddCommand } from "./../edit/commands/SGraphAddCommand"
-import { SColor } from '@persagy-web/draw/lib';
+import { SColor, SFont } from '@persagy-web/draw/lib';
 export class PTopoScene extends SBaseEditScene {
     constructor() {
         super()
@@ -50,31 +50,34 @@ export class PTopoScene extends SBaseEditScene {
         if (this.editCmd == "EditBaseLine") {
             this.addLine(event)
             this.clearCmdStatus();
+        } else if (this.editCmd == "EditBasetext") {
+            this.addTextItem(event);
+            this.clearCmdStatus();
         }
-        // else if (this.editCmd == "EditBasetext") {
-        //     this.addTextItem(event);
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "BaseExplain") {
-        //     this.addExplainItem(event);
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "EditBaseImage") {
-        //     this.addImageItem(event)
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "EditBasePolygon") {
-        //     console.log('编辑多边形')
-        // } else if (this.editCmd == "EditBaseRect") {
-        //     this.addRectItem(event)
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "EditBaseTriangle") {
-        //     this.addTriangleItem(event)
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "EditBaseCircle") {
-        //     this.addCircleItem(event)
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "EditBaseArrows") {
-        //     this.addArrowsItem(event)
-        //     this.clearCmdStatus();
-        // } else if (this.editCmd == "EditEuqipment") {
+        else if (this.editCmd == "BaseExplain") {
+            this.addExplainItem(event);
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBaseImage") {
+            this.addImageItem(event)
+            this.clearCmdStatus();
+        }
+        else if (this.editCmd == "EditBasePolygon") {
+            console.log('编辑多边形')
+        } else if (this.editCmd == "EditBaseRect") {
+            this.addRectItem(event)
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBaseTriangle") {
+            this.addTriangleItem(event)
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBaseCircle") {
+            this.addCircleItem(event)
+            this.clearCmdStatus();
+        }
+        else if (this.editCmd == "EditBaseArrows") {
+            this.addArrowsItem(event)
+            this.clearCmdStatus();
+        }
+        // else if (this.editCmd == "EditEuqipment") {
         //     this.addEuqipment(event)
         //     this.clearCmdStatus();
         // }
@@ -157,8 +160,8 @@ export class PTopoScene extends SBaseEditScene {
                 default: {
                     text: '请在右侧属性栏输入文字!',
                     color: "#646c73",
-                    Font: 14,
-                    Backgroundcolor: "#f7f9facc",
+                    font: 14,
+                    backgroundcolor: "#f7f9facc",
                 }
             }
         }
@@ -193,8 +196,8 @@ export class PTopoScene extends SBaseEditScene {
                 default: {
                     text: '请在右侧属性栏输入文字!',
                     color: "#646c73",
-                    Font: 14,
-                    Backgroundcolor: "#f7f9facc",
+                    font: 14,
+                    backgroundcolor: "#f7f9facc",
                 }
             }
         }
@@ -204,11 +207,8 @@ export class PTopoScene extends SBaseEditScene {
         item.moveable = true;
         this.addItem(item);
         this.undoStack.push(new SGraphAddCommand(this, item));
-        // this.Markers.push(item);
         this.grabItem = null;
-        // this.focusItem = item;
         this.finishCreated(item);
-        // this.scenceUpdate(this);
     }
 
     /**
@@ -236,7 +236,7 @@ export class PTopoScene extends SBaseEditScene {
                 }
             }
         }
-        // const item = new SPersagyImageEdit(null, data);
+        const item = new SPersagyImageEdit(null, data);
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
@@ -427,6 +427,8 @@ export class PTopoScene extends SBaseEditScene {
             styleValue = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255);
         } else if (styletype == "lineStyle") {
             styleValue = SLineStyle[changestyle]
+        } else if (styletype == "font") {
+            styleValue = new SFont("sans-serif", changestyle)
         } else {
             styleValue = changestyle
         }
@@ -434,7 +436,6 @@ export class PTopoScene extends SBaseEditScene {
             if (item instanceof SGraphSelectContainer) {
                 return
             }
-            console.log('xxxx', item)
             item[styletype] = styleValue;
         })
 
@@ -478,13 +479,13 @@ export class PTopoScene extends SBaseEditScene {
      */
     save() {
         if (!this.view) return;
-        const Marktype: string[] = ['BaseLine', 'BaseText', 'BaseExplain', 'BaseImage'];
+        const Marktype: string[] = ['BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect'];
         const markers: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
         const nodes: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
         const relations: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
         this.root.children.forEach(item => {
-            if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer) && Marktype.includes(item.data.Properties.type)) {
-                Markers.push(item.toData())
+            if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer) && Marktype.includes(item.data.properties.type)) {
+                markers.push(item.toData())
             }
         });
         return {

+ 11 - 17
src/components/editClass/persagy-edit/item/SPersagyImageEdit.ts

@@ -29,7 +29,6 @@ import { SGraphItem } from "@persagy-web/graph";
 import { Marker } from "./../../big-edit/types/Marker";
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { ItemOrder } from '@persagy-web/big/lib';
-import { uuid } from "./../../big-edit/until";
 
 /**
  * 编辑基础图片类
@@ -39,20 +38,9 @@ import { uuid } from "./../../big-edit/until";
 export class SPersagyImageEdit extends SBaseImageEdit {
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
-    /**编辑相关操作的数据 */
-    data: Marker
-    /** 起始锚点  */
-    startItem: SGraphItem | null = null;
-    /** 结束锚点  */
-    endItem: SGraphItem | null = null;
 
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent, data);
-        this.zOrder = ItemOrder.imageOrder;
-        this.isTransform = false;
-        this.data = data;
-        this.name = data.Name;
-
     }
     /**
      * 鼠标按下事件
@@ -65,15 +53,21 @@ export class SPersagyImageEdit extends SBaseImageEdit {
         return true;
     } // Function onMouseDown()
 
+    /**
+     * 返回对象储存的相关数据
+     *
+     * @return	formData
+     */
     toData() {
         return super.toData()
     }
+
     /**
-   * 鼠标按下事件
-   *
-   * @param   event   保存事件参数
-   * @return  boolean
-   */
+     * 鼠标按下事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+    */
     onDoubleClick(event: SMouseEvent): boolean {
         let dom = document.createElement('input');
         dom.type = "file";

+ 34 - 25
src/components/editview/baseTopoEditer.vue

@@ -1,7 +1,17 @@
 <template>
   <div class="baseTopo" id="baseTopo" ref="baseTopo">
-    <topoTooltip v-show="showTooltip" class="topoTooltip-box" ref="topoTooltip" :havItem="havItem"></topoTooltip>
-    <canvas id="persagy_topo" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
+    <topoTooltip
+      v-show="showTooltip"
+      class="topoTooltip-box"
+      ref="topoTooltip"
+      :havItem="havItem"
+    ></topoTooltip>
+    <canvas
+      id="persagy_topo"
+      :width="canvasWidth"
+      :height="canvasHeight"
+      tabindex="0"
+    ></canvas>
   </div>
 </template>
 <script>
@@ -46,7 +56,7 @@ export default {
       return false;
     };
     // 读取底图
-    // this.readtopoMsg();
+    this.readtopoMsg();
     // 读取平面图-------测试代码
     // this.readMapmsg();
   },
@@ -105,30 +115,30 @@ export default {
       });
       // 保存
       bus.$on("saveTopo", (val) => {
-        const Elements = this.scene.save();
+        const elements = this.scene.save();
         const obj = {
-          Elements,
-          Name: "1", // 名称
-          CategoryID: "1", // 图分类ID
-          ProjectID: "1", // 项目ID
-          BuildingID: "1", // 建筑ID
-          FloorID: "1", // 楼层id
-          Note: "1", // 图说明
-          Log: {
+          elements,
+          name: "1", // 名称
+          categoryID: "1", // 图分类ID
+          projectID: "1", // 项目ID
+          buildingID: "1", // 建筑ID
+          floorID: "1", // 楼层id
+          note: "1", // 图说明
+          log: {
             // 图操作日志
-            Mark: "1", // 图的存盘标记
-            CommandList: [
+            mark: "1", // 图的存盘标记
+            commandList: [
               {
-                Command: "1", // 命令
-                Desc: "1", // 描述
-                Detail: "1", // 详情
+                command: "1", // 命令
+                desc: "1", // 描述
+                detail: "1", // 详情
               },
             ],
           },
         };
         Object.assign(obj, {
-          GraphId: "cd8ca79c337644d48c58c447cf21b757",
-          Id: "f15506fa5dcc4ce79064e459e5497748",
+          graphId: "cd8ca79c337644d48c58c447cf21b757",
+          id: "f15506fa5dcc4ce79064e459e5497748",
         });
         console.log(obj);
         saveGroup(obj).then((res) => {
@@ -139,17 +149,16 @@ export default {
     // 读取拓扑图
     readtopoMsg() {
       let obj = {
-        GraphId: "cd8ca79c337644d48c58c447cf21b757",
-        Id: "f15506fa5dcc4ce79064e459e5497748",
+        graphId: "cd8ca79c337644d48c58c447cf21b757",
+        id: "f15506fa5dcc4ce79064e459e5497748",
       };
       readGroup(obj).then((res) => {
         const parse = new PTopoParser();
-        parse.parseData(res.Content.Elements);
-        console.log(parse.Markers);
-        parse.Markers.forEach((item) => {
+        parse.parseData(res.content.elements);
+        parse.markers.forEach((item) => {
+          item.selectable = true;
           this.scene.addItem(item);
         });
-        console.log(this.scene);
       });
     },
     readMapmsg() {

+ 9 - 4
src/components/editview/rightPropertyBar/baseTextPro.vue

@@ -8,14 +8,19 @@
         <div class="property">
           <div class="color-box">
             <div class="cololorSelect">
-              <el-color-picker show-alpha @change="changeColor" class="fix-box-1" v-model="color"></el-color-picker>
+              <el-color-picker
+                show-alpha
+                @change="changeColor"
+                class="fix-box-1"
+                v-model="color"
+              ></el-color-picker>
             </div>
             <span>颜色</span>
           </div>
           <div class="line-width">
             <el-input-number
-              style="width:80px"
-              v-model="fontSize"
+              style="width: 80px"
+              v-model="size"
               controls-position="right"
               @change="changeFontSize"
               size="mini"
@@ -42,7 +47,7 @@
         <el-input
           type="textarea"
           @input="changeText"
-          :autosize="{ minRows: 2, maxRows: 4}"
+          :autosize="{ minRows: 2, maxRows: 4 }"
           v-model="text"
         ></el-input>
         <span>文本</span>

+ 15 - 9
src/components/editview/rightPropertyBar/property.vue

@@ -1,13 +1,13 @@
 <!--属性栏-->
 <template>
   <div class="propertys">
-    <baseTextProVue
+    <baseTextPro
       :strokeColor="strokeColor"
       :fontSize="fontSize"
       :textMsg="textMsg"
       :backgroundColor="backgroundColor"
-      v-show="itemType == 'BaseText' || itemType == 'BaseExplain' "
-    ></baseTextProVue>
+      v-show="itemType == 'BaseText' || itemType == 'BaseExplain'"
+    ></baseTextPro>
     <baseLinePro
       v-show="itemType == 'BaseLine'"
       :strokeColor="strokeColor"
@@ -22,7 +22,12 @@
       :Url="Url"
       :Width="Width"
       :Height="Height"
-      v-show="itemType == 'BaseRect' || itemType == 'BaseTriangle' || itemType == 'BaseArrow'|| itemType == 'BaseCircle'"
+      v-show="
+        itemType == 'BaseRect' ||
+        itemType == 'BaseTriangle' ||
+        itemType == 'BaseArrow' ||
+        itemType == 'BaseCircle'
+      "
     ></BaseGraphy>
     <BaseImagePro
       :lineStyle="lineStyle"
@@ -36,7 +41,7 @@
   </div>
 </template>
 <script>
-import baseTextProVue from "./baseTextPro.vue";
+import baseTextPro from "./baseTextPro.vue";
 import baseLinePro from "./baseLinePro.vue";
 import BaseGraphy from "./BaseGraphy";
 import BaseImagePro from "./BaseImagePro";
@@ -50,14 +55,14 @@ const lineStyle = {
   3: "None",
 };
 export default {
-  components: { baseTextProVue, baseLinePro, BaseGraphy, BaseImagePro },
+  components: { baseTextPro, baseLinePro, BaseGraphy, BaseImagePro },
   data() {
     return {
       itemType: "", // item 类型
       strokeColor: "", //线条颜色
       lineStyle: "solid", //线条样式
       lineWidth: 1, //线宽
-      fontSize: 12, //字体大小
+      fontSize: 0, //字体大小
       textMsg: "", // 文本
       backgroundColor: "", // 背景色
       Width: 0, //item 宽
@@ -71,7 +76,7 @@ export default {
   },
   methods: {
     emitChoice(itemList) {
-      console.log('itemList',itemList)
+      console.log("itemList", itemList);
       if (itemList.length == 1) {
         this.itemType = itemList[0].data.properties.type
           ? itemList[0].data.properties.type
@@ -98,6 +103,7 @@ export default {
         this.backgroundColor = item.backgroundColor.toRgba();
         this.textMsg = item.text;
         this.fontSize = item.font.size;
+        console.log("item.font.size", item.font.size);
       } else if (this.itemType == "BaseImage") {
         this.Width = item.width; //item 宽
         this.Height = item.height; //item 高
@@ -116,7 +122,7 @@ export default {
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
         this.strokeColor = item.strokeColor.toRgba();
-        this.fillColor = item.fillColor.toRgba()
+        this.fillColor = item.fillColor.toRgba();
         // 填充色
       }
     },

+ 1 - 1
vue.config.js

@@ -7,7 +7,7 @@ module.exports = {
         },
         proxy: {
             '/labsl': {
-                target: 'http://60.205.177.43:8080',
+                target: 'http://39.102.40.239:8080',
                 changeOrigin: true,
                 secure: false,
             },