YaolongHan 4 éve
szülő
commit
b928e17102

+ 2 - 2
package.json

@@ -9,9 +9,9 @@
   },
   "dependencies": {
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.13",
+    "@persagy-web/big": "2.2.15",
     "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.17",
+    "@persagy-web/graph": "2.2.20",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",
     "core-js": "^3.6.5",

+ 25 - 22
src/components/editClass/edit/items/SBaseLineEdit.ts

@@ -24,7 +24,6 @@
  * *********************************************************************************************************************
  */
 
-
 import { SColor, SLine, SPainter, SPoint, SRect } from "@persagy-web/draw/";
 import { SMouseButton, SMouseEvent, SUndoStack } from "@persagy-web/base";
 import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
@@ -37,6 +36,7 @@ import {
 } from "@persagy-web/graph/";
 import { SGraphEdit } from ".."
 import { Marker } from "../type/Marker";
+
 /**
  * 直线编辑类
  *
@@ -60,88 +60,85 @@ export class SBaseLineEdit extends SGraphEdit {
     private minY = Number.MAX_SAFE_INTEGER;
     /** Y坐标最大值  */
     private maxY = Number.MIN_SAFE_INTEGER;
-
     /** 线段   */
     private _line: SPoint[] = [];
     get line(): SPoint[] {
         return this._line;
-    }
+    } // Get line
     set line(arr: SPoint[]) {
         this._line = arr;
         this.update();
-    }
-
+    } // Set line
     /** 是否垂直水平绘制   */
     private _verAndLeve: Boolean = false;
     get verAndLeve(): Boolean {
         return this._verAndLeve;
-    }
+    } // Get verAndLeve
     set verAndLeve(bool: Boolean) {
         this._verAndLeve = bool;
         this.update();
-    }
+    } // Set verAndLeve
 
     /** 是否完成绘制  */
     protected _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
 
     /** 线条颜色    */
     private _strokeColor: SColor = SColor.Black;
     get strokeColor(): SColor {
         return this._strokeColor;
-    }
+    } // Get strokeColor
     set strokeColor(v: SColor) {
         this._strokeColor = v;
         this.update();
-    }
+    }// Get strokeColor
 
     /** 线条样式    */
     private _lineStyle: SLineStyle = SLineStyle.Solid;
     get lineStyle(): SLineStyle {
         return this._lineStyle;
-    }
+    } // Get lineStyle
     set lineStyle(v: SLineStyle) {
         this._lineStyle = v;
         this.update();
-    }
+    } // Set lineStyle
 
     /** 端点填充色 */
     private _fillColor: SColor = SColor.White;
     get fillColor(): SColor {
         return this._fillColor;
-    }
+    } // Get fillColor
     set fillColor(v: SColor) {
         this._fillColor = v;
         this.update();
-    }
+    } //Set fillColor
 
     /** 选中端点填充色 */
     private _activeFillColor: SColor = new SColor("#2196f3");
     get activeFillColor(): SColor {
         return this._activeFillColor;
-    }
+    } //Get activeFillColor
     set activeFillColor(v: SColor) {
         this._activeFillColor = v;
         this.update();
-    }
+    } //Set activeFillColor
 
     /** 线条宽度    */
     private _lineWidth: number = 1;
     get lineWidth(): number {
         return this._lineWidth;
-    }
+    } //Get lineWidth
     set lineWidth(v: number) {
-        console.log('lineWidth', v)
         this._lineWidth = v;
         this.update();
-    }
+    } //Set lineWidth
 
     /** 拖动灵敏度   */
     dis: number = 5;
@@ -173,7 +170,7 @@ export class SBaseLineEdit extends SGraphEdit {
             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;
             }
@@ -499,6 +496,11 @@ export class SBaseLineEdit extends SGraphEdit {
         );
     } // Function boundingRect()
 
+    /**
+     * 返回对象储存的相关数据
+     *
+     * @return	formData
+     */
     toData() {
         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;
@@ -506,7 +508,8 @@ export class SBaseLineEdit extends SGraphEdit {
         this.data.style.default.lineStyle = this.lineStyle;
         this.data.style.default.strokeColor = this.strokeColor;
         return this.data
-    }
+    } // Function toData()
+
     /**
      * Item绘制操作
      *

+ 0 - 2
src/components/editClass/edit/type/Marker.ts

@@ -24,8 +24,6 @@
  * *********************************************************************************************************************
  */
 
-
-
 import { Point } from "@persagy-web/graph/lib/types/Point";
 import { Size } from "@persagy-web/big/lib/types/Size";
 

+ 3 - 3
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -1,5 +1,5 @@
 import { SBaseEditScene, SBaseExpainEdit, SBaseEquipment } from "./../big-edit";
-import { SBaseRectEdit, SBaseLineEdit, SBaseTextEdit, SGraphEdit, SBaseArrowEdit ,SBaseCircleEdit,SBaseTriangleEdit} from "./../edit";
+import { SBaseRectEdit, SBaseLineEdit, SBaseTextEdit, SGraphEdit, SBaseArrowEdit, SBaseCircleEdit, SBaseTriangleEdit } from "./../edit";
 // import { SPersagyImageEdit } from "./"
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
@@ -23,6 +23,7 @@ export class PTopoScene extends SBaseEditScene {
      */
     listChange(list: any): void {
         const itemList: any = []
+        console.log('list', list)
         list.itemList.forEach((item: any) => {
             if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
                 itemList.push(item)
@@ -47,7 +48,7 @@ export class PTopoScene extends SBaseEditScene {
     onMouseDown(event: SMouseEvent): any {
         this.vueOnMouseDown(event) //外部调用
         if (this.editCmd == "EditBaseLine") {
-            // this.addLine(event)
+            this.addLine(event)
             this.clearCmdStatus();
         }
         // else if (this.editCmd == "EditBasetext") {
@@ -119,7 +120,6 @@ export class PTopoScene extends SBaseEditScene {
                 default: {
                     line: [{ x: event.x, y: event.y }],
                 }
-
             }
         }
         const lineItem = new SBaseLineEdit(null, data);

+ 2 - 2
src/components/editview/rightPropertyBar/property.vue

@@ -73,8 +73,8 @@ export default {
     emitChoice(itemList) {
       console.log('itemList',itemList)
       if (itemList.length == 1) {
-        this.itemType = itemList[0].data.Properties.Type
-          ? itemList[0].data.Properties.Type
+        this.itemType = itemList[0].data.properties.type
+          ? itemList[0].data.properties.type
           : "";
       } else {
         this.itemType = "";