YaolongHan 4 лет назад
Родитель
Сommit
cff2a73a9c

+ 2 - 2
src/components/editClass/big-edit/BaseEditScene.ts

@@ -1,5 +1,5 @@
-import { GraphEditScene } from "./../edit"
-export class BaseEditScene extends GraphEditScene {
+import { SGraphEditScene } from "../edit"
+export class SBaseEditScene extends SGraphEditScene {
 
     /**图例节点 */
     Nodes: any = [];  // 图例节点,所有与工程信息化相关的图例(图标类型与区域)

+ 7 - 3
src/components/editClass/big-edit/index.ts

@@ -1,3 +1,7 @@
-import {BaseEditScene} from "./BaseEditScene"
-import {BaseLineEdit} from "./items/BaseLineEdit"
-export {BaseEditScene,BaseLineEdit}
+import {SBaseEditScene} from "./SBaseEditScene"
+import {SBaseLineEdit} from "./items/SBaseLineEdit"
+import {SBaseTextEdit} from "./items/SBaseTextEdit"
+import {SBaseImageEdit} from "./items/SBaseImageEdit"
+import {SBaseExpainEdit} from "./items/SBaseExpainEdit"
+
+export {SBaseEditScene,SBaseLineEdit,SBaseTextEdit,SBaseImageEdit,SBaseExpainEdit}

+ 93 - 0
src/components/editClass/big-edit/items/SBaseExpainEdit.ts

@@ -0,0 +1,93 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2016-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+import { SColor,SFont } from "@persagy-web/draw/";
+import { STextEdit } from './../../edit';
+import { SGraphItem } from "@persagy-web/graph";
+import { Marker } from "./../types/Marker";
+import { SMouseEvent } from "@persagy-web/base/lib";
+import { ItemOrder } from '@persagy-web/big/lib';
+import { uuid } from "./../../big-edit/until";
+/**
+ * 编辑基础注释文本类
+ *
+ * * @author  韩耀龙(han_yao_long#163.com)
+ */
+export class SBaseExpainEdit extends STextEdit {
+    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+    //属性
+    /**编辑相关操作的数据 */
+    data: Marker
+    /** 起始锚点  */
+    startItem: SGraphItem | null = null;
+    /** 结束锚点  */
+    endItem: SGraphItem | null = null;
+
+    constructor(parent: SGraphItem | null, data: Marker) {
+        super(parent);
+        this.zOrder = ItemOrder.textOrder;
+        this.isTransform = false;
+        this.data = data;
+        if (!data.ID) {
+            data.ID = uuid()
+        }
+        this.id = data.ID;
+        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.Properties.Zorder) {
+            this.zOrder = data.Properties.Zorder;
+        }
+        if (data.Properties && data.Properties.Text) {
+            this.text = data.Properties.Text;
+        }
+        if (data.Properties && data.Properties.Color) {
+            this.color = new SColor(data.Properties.Color);
+        }
+        if (data.Properties && data.Properties.Font) {
+            this.font = new SFont("sans-serif", data.Properties.Font);;
+        }
+        if (data.Properties && data.Properties.BackgroundColor) {
+            this.backgroundColor = new SColor(data.Properties.BackgroundColor);
+        }
+    }
+    /**
+     * 鼠标按下事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    onMouseDown(event: SMouseEvent): boolean {
+        super.onMouseDown(event)
+        return true;
+    } // Function onMouseDown()
+
+    toData() {
+        console.log(1230)
+    }
+}

Разница между файлами не показана из-за своего большого размера
+ 93 - 0
src/components/editClass/big-edit/items/SBaseImageEdit.ts


+ 94 - 0
src/components/editClass/big-edit/items/SBaseLineEdit.ts

@@ -0,0 +1,94 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .F88X
+ *        X8888Y
+ *      .}888888N;
+ *        i888888N;        .:!              .I$WI:
+ *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
+ *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
+ *            +888888N;  .8888888Y                                  "&&8Y.}8,
+ *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
+ *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
+ *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
+ *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
+ *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
+ *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
+ *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
+ *      .:R888888I
+ *      .&888888I                                          Copyright (c) 2016-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * *********************************************************************************************************************
+ */
+import { SColor, SLine, SPainter, SPoint, SRect } from "@persagy-web/draw/";
+import { SLineEdit } from './../../edit';
+import { SGraphItem } from "@persagy-web/graph";
+import { Marker } from "./../types/Marker";
+import { SMouseEvent } from "@persagy-web/base/lib";
+
+/**
+ * 编辑基础直线类
+ *
+ * * @author  韩耀龙(han_yao_long#163.com)
+ */
+export class SBaseLineEdit extends SLineEdit {
+    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+    //属性
+    /**编辑相关操作的数据 */
+    data: Marker
+    /** 起始锚点  */
+    startItem: SGraphItem | null = null;
+    /** 结束锚点  */
+    endItem: SGraphItem | null = null;
+
+    constructor(parent: SGraphItem | null, data: Marker) {
+        super(parent);
+        this.data = data;
+        if (data.Style && data.Style.Line) {
+            let setPointList: SPoint[];
+            setPointList = data.Style.Line.map(i => {
+                return new SPoint(i.X, i.Y)
+            });
+            this.line = setPointList;
+        }
+    }
+    /**
+     * 鼠标按下事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    onMouseDown(event: SMouseEvent): boolean {
+        super.onMouseDown(event)
+        return true;
+    } // Function onMouseDown()
+
+    toData() {
+        console.log(1230)
+    }
+    // onDraw(painter: SPainter) {
+    //     if (this.maskFlag && this.status == SItemStatus.Normal) {
+    //         let color = new SColor(this.strokeColor);
+    //         color.alpha = 100;
+    //         painter.pen.color = new SColor(this.strokeColor);
+    //         if (this.lineStyle == SLineStyle.Dashed) {
+    //             painter.pen.lineDash = [
+    //                 painter.toPx(this.lineWidth * 3),
+    //                 painter.toPx(this.lineWidth * 7)
+    //             ];
+    //         }
+    //         else if (this.lineStyle == SLineStyle.Dotted) {
+    //             painter.pen.lineDash = [
+    //                 painter.toPx(this.lineWidth),
+    //                 painter.toPx(this.lineWidth)
+    //             ];
+    //         }
+    //         painter.drawLine(this.line[0], this.line[1]);
+    //     } else {
+    //         super.onDraw(painter);
+    //     }
+    // }
+}

+ 45 - 6
src/components/editClass/big-edit/items/BaseLineEdit.ts

@@ -23,17 +23,19 @@
  *
  * *********************************************************************************************************************
  */
-
-import { LineEdit } from './../../edit';
+import { SColor,SFont } from "@persagy-web/draw/";
+import { STextEdit } from './../../edit';
 import { SGraphItem } from "@persagy-web/graph";
 import { Marker } from "./../types/Marker";
-
+import { SMouseEvent } from "@persagy-web/base/lib";
+import { ItemOrder } from '@persagy-web/big/lib';
+import { uuid } from "./../../big-edit/until";
 /**
- * 编辑基础直线线类
+ * 编辑基础文本
  *
  * * @author  韩耀龙(han_yao_long#163.com)
  */
-export class BaseLineEdit extends LineEdit {
+export class SBaseTextEdit extends STextEdit {
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /**编辑相关操作的数据 */
@@ -45,10 +47,47 @@ export class BaseLineEdit extends LineEdit {
 
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent);
+        this.zOrder = ItemOrder.textOrder;
+        this.isTransform = false;
         this.data = data;
+        if (!data.ID) {
+            data.ID = uuid()
+        }
+        this.id = data.ID;
+        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.Properties.Zorder) {
+            this.zOrder = data.Properties.Zorder;
+        }
+        if (data.Properties && data.Properties.Text) {
+            this.text = data.Properties.Text;
+        }
+        if (data.Properties && data.Properties.Color) {
+            this.color = new SColor(data.Properties.Color);
+        }
+        if (data.Properties && data.Properties.Font) {
+            this.font = new SFont("sans-serif", data.Properties.Font);;
+        }
+        if (data.Properties && data.Properties.BackgroundColor) {
+            this.backgroundColor = new SColor(data.Properties.BackgroundColor);
+        }
     }
+    /**
+     * 鼠标按下事件
+     *
+     * @param   event   保存事件参数
+     * @return  boolean
+     */
+    onMouseDown(event: SMouseEvent): boolean {
+        super.onMouseDown(event)
+        return true;
+    } // Function onMouseDown()
 
     toData() {
+        console.log(1230)
     }
-
 }

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

@@ -49,6 +49,8 @@ export interface Marker {
     Rolate?: Point;
     /** 大小  */
     Size?: Size;
+    /** 绘制时得数据以及样式 */
+    Style:any;
     /** 由应用自己定义  */
     Properties?: any;
 } // Interface Marker

+ 14 - 0
src/components/editClass/big-edit/until.ts

@@ -0,0 +1,14 @@
+//  生成uuid
+export function uuid() {
+    const s = [];
+    const hexDigits = "0123456789abcdef";
+    for (let i = 0; i < 36; i++) {
+        s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
+    }
+    s[14] = "4";
+    s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1);
+    s[8] = s[13] = s[18] = s[23] = "-";
+
+    const uuid = s.join("");
+    return `${uuid}-${new Date().getTime()}`;
+}

+ 1 - 1
src/components/editClass/edit/GraphEditScene.ts

@@ -34,7 +34,7 @@ import { SRectSelectItem } from "@persagy-web/big";
  *
  * @author  韩耀龙(han_yao_long@126.com)
  */
-export class GraphEditScene extends SGraphScene {
+export class SGraphEditScene extends SGraphScene {
     /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /** undo/redo存储栈 */

+ 7 - 7
src/components/editClass/edit/index.ts

@@ -24,13 +24,13 @@
  * *********************************************************************************************************************
  */
 import { SGraphEdit } from "./SGraphEdit";
-import { GraphEditScene } from "./GraphEditScene";
+import { SGraphEditScene } from "./SGraphEditScene";
 
-import { ImageEdit } from "./items/ImageEdit";
-import { LineEdit } from "./items/LineEdit";
-import { PolygonEdit } from "./items/PolygonEdit";
-import { PolylineEdit } from "./items/PolylineEdit";
-import { TextEdit } from "./items/TextEdit";
+import { SImageEdit } from "./items/SImageEdit";
+import { SLineEdit } from "./items/SLineEdit";
+import { SPolygonEdit } from "./items/SPolygonEdit";
+import { SPolylineEdit } from "./items/SPolylineEdit";
+import { STextEdit } from "./items/STextEdit";
 
 import { SGraphCommand } from "./commands/SGraphCommand";
 import { SGraphAddCommand } from "./commands/SGraphAddCommand";
@@ -40,4 +40,4 @@ import { SGraphPointListInsert } from "./commands/SGraphPointListInsert";
 import { SGraphPointListUpdate } from "./commands/SGraphPointListUpdate";
 import { SGraphPropertyCommand } from "./commands/SGraphPropertyCommand";
 
-export {GraphEditScene, SGraphEdit, ImageEdit, LineEdit, PolygonEdit, PolylineEdit, TextEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand }
+export { SGraphEditScene, SGraphEdit, SImageEdit, SLineEdit, SPolygonEdit, SPolylineEdit, STextEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand }

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

@@ -34,7 +34,7 @@ import { SItemStatus } from "@persagy-web/big";
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class ImageEdit extends SImageItem {
+export class SImageEdit extends SImageItem {
     //////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /**编辑状态 */

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

@@ -42,7 +42,7 @@ import { SGraphEdit } from "./../"
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class LineEdit extends SGraphEdit {
+export class SLineEdit extends SGraphEdit {
     ////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /** X坐标最小值  */

+ 2 - 2
src/components/editClass/edit/items/PolygonEdit.ts

@@ -43,14 +43,14 @@ import {
 } from "@persagy-web/draw";
 import { SItemStatus } from "@persagy-web/big";
 import { SMathUtil } from "@persagy-web/big/lib/utils/SMathUtil";
-import {SGraphEdit} from "./../"
+import {SGraphEdit} from ".."
 
 /**
  * 多边形编辑类
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class PolygonEdit extends SGraphEdit {
+export class SPolygonEdit extends SGraphEdit {
     /** X坐标最小值  */
     private minX = Number.MAX_SAFE_INTEGER;
     /** X坐标最大值  */

+ 2 - 2
src/components/editClass/edit/items/PolylineEdit.ts

@@ -36,14 +36,14 @@ import {
     SLineStyle,
     SGraphItem
 } from "@persagy-web/graph/";
-import {SGraphEdit} from "./../"
+import {SGraphEdit} from ".."
 
 /**
  * 折线编辑类
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class PolylineEdit extends SGraphEdit {
+export class SPolylineEdit extends SGraphEdit {
     /** X坐标最小值  */
     private minX = Number.MAX_SAFE_INTEGER;
     /** X坐标最大值  */

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

@@ -34,7 +34,7 @@ import { SItemStatus } from "@persagy-web/big";
  *
  * @author  韩耀龙(han_yao_long@163.com)
  */
-export class TextEdit extends SObjectItem {
+export class STextEdit extends SObjectItem {
     /////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /**编辑状态 */

+ 154 - 4
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -1,13 +1,163 @@
-import { BaseEditScene } from "./../big-edit";
+import { SBaseEditScene, SBaseLineEdit, SBaseTextEdit, SBaseImageEdit, SBaseExpainEdit } from "./../big-edit";
+// import { SGraphItem } from "@persagy-web/graph/";
+import { SGraphEdit } from "./../edit"
 import { SMouseEvent } from "@persagy-web/base/lib";
-export class PTopoScene extends BaseEditScene {
+import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
+import { uuid } from "./../big-edit/until";
+export class PTopoScene extends SBaseEditScene {
     constructor() {
         super()
     }
 
-    onMouseUp(event: SMouseEvent): any {
+
+    onMouseDown(event: SMouseEvent): any {
         if (this.editCmd == "EditBaseLine") {
-            console.log('编辑线')
+            this.addLine(event)
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBasetext") {
+            this.addTextItem(event);
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBaseImage") {
+            this.addImageItem(event)
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBasePostil") {
+            this.addExplainItem(event)
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBasePolygon") {
+            console.log('编辑多边形')
+        } else if (this.editCmd == "EditBaseTriangle") {
+            console.log('编辑三角形')
+        } else if (this.editCmd == "EditBaseCircle") {
+            console.log('编辑圆')
+        } else if (this.editCmd == "EditBaseArrows") {
+            console.log('编辑箭头')
+        } else if (this.editCmd == "") {
+            super.onMouseDown(event);
+        }
+
+    }
+
+    addLine(event: SMouseEvent) {
+        const data = {
+            /** ID */
+            ID: uuid(),
+            /** 名称  */
+            Name: '基础直线',
+            /** 图标(Image),线类型(Line) */
+            Type: "BaseLine",
+            /** 位置  */
+            Pos: { X: 0, Y: 0 },
+            /** 由应用自己定义  */
+            Properties: {
+            },
+            Style: {
+                Line: [{ X: event.x, Y: event.y }],
+            }
+        }
+        const lineItem = new SBaseLineEdit(null, data);
+        lineItem.status = SItemStatus.Create;
+        this.addItem(lineItem);
+        this.grabItem = lineItem;
+        lineItem.connect("finishCreated", this, this.finishCreated);
+        if (this.view) {
+            this.view.update();
+        }
+    }
+    addTextItem(event: SMouseEvent) {
+        const data = {
+            /** ID */
+            ID: uuid(),
+            /** 名称  */
+            Name: '基础文本',
+            /** 图标 */
+            Type: "BaseText",
+            /** 位置  */
+            Pos: { X: event.x, Y: event.y },
+            /** 由应用自己定义  */
+            Properties: {
+                // IconUrl: require(`../../assets/images/t-text-hover.png`),
+                Text: '请在右侧属性栏输入文字!',
+                Color: "#646c73",
+                Font: 14,
+                BackgroundColor: "#f7f9facc"
+            },
+            Style: {}
         }
+        const item = new SBaseExpainEdit(null, data);
+        item.moveTo(event.x, event.y);
+        item.selectable = true;
+        item.moveable = true;
+        this.addItem(item);
+        // this.Markers.push(item);
+        this.grabItem = null;
+        // this.focusItem = item;
+        this.finishCreated(item);
+        // this.scenceUpdate(this);
+    }
+    addExplainItem(event: SMouseEvent) {
+        const data = {
+            /** ID */
+            ID: uuid(),
+            /** 名称  */
+            Name: '基础注释文本',
+            /** 图标 */
+            Type: "BaseExplain",
+            /** 位置  */
+            Pos: { X: event.x, Y: event.y },
+            /** 由应用自己定义  */
+            Properties: {
+                // IconUrl: require(`../../assets/images/t-text-hover.png`),
+                Text: '请在右侧属性栏输入文字!',
+                Color: "#646c73",
+                Font: 14,
+                BackgroundColor: "#f7f9facc"
+            },
+            Style: {}
+        }
+        const item = new SBaseTextEdit(null, data);
+        item.moveTo(event.x, event.y);
+        item.selectable = true;
+        item.moveable = true;
+        this.addItem(item);
+        // this.Markers.push(item);
+        this.grabItem = null;
+        // this.focusItem = item;
+        this.finishCreated(item);
+        // this.scenceUpdate(this);
+    }
+    addImageItem(event: SMouseEvent) {
+        const data = {
+            /** ID */
+            ID: uuid(),
+            /** 名称  */
+            Name: '基础图片',
+            Num: 1,
+            /** 图标(Image),线类型(Line) */
+            Type: "BaseImage",
+            /** 位置  */
+            Pos: { X: event.x, Y: event.y },
+            /** 由应用自己定义  */
+            Properties: {
+                // IconUrl: require(`../../assets/images/t-img-hover.png`),
+                StrokeColor: "#c0ccda",
+                Url: '',
+            },
+            Style: {}
+        }
+        const item = new SBaseImageEdit(null, data);
+        item.selectable = true;
+        item.moveable = true;
+        this.addItem(item);
+        this.Markers.push(item);
+        this.finishCreated(item);
+    }
+
+    finishCreated(item: SGraphEdit): void {
+        console.log('finishCreated', item)
+        this.grabItem = null;
+        item.status = SItemStatus.Normal;
+    }
+    clearCmdStatus() {
+
     }
 }

+ 13 - 6
src/components/editview/baseTopoEditer.vue

@@ -7,7 +7,7 @@
 import { PTopoScene } from "@/components/editClass/persagy-edit";
 // import { BaseLineEdit } from "@/components/editClass/big-edit";
 import { SGraphView } from "@persagy-web/graph";
-import { mapState } from "vuex";
+import { mapState, mapMutations } from "vuex";
 export default {
   data() {
     return {
@@ -26,6 +26,7 @@ export default {
     this.scene = new PTopoScene();
     this.view = new SGraphView("persagy_topo");
     this.view.scene = this.scene;
+    this.scene.clearCmdStatus = this.clearCmdStatus;
     // this.scene.root.children = [];
     // this.lineItem = new BaseLineEdit(null, []);
     // this.lineItem.status = SItemStatus.Create;
@@ -34,20 +35,26 @@ export default {
     // this.scene.grabItem = this.lineItem;
     // this.view.update();
   },
+  methods: {
+    ...mapMutations(["SETCHOICELEHEND"]),
+    // 恢复命令状态
+    clearCmdStatus() {
+      this.SETCHOICELEHEND("");
+    }
+  },
   watch: {
     choiceLegend(val) {
       if (this.scene) {
         // 设置当前编辑状态
         this.scene.editCmd = this.choiceLegend;
       }
-      console.log("choiceLegend", val);
     }
   }
 };
 </script>
 <style lang="less" scoped>
-    .baseTopo{
-        width: 100%;
-        height: 100%
-    }
+.baseTopo {
+  width: 100%;
+  height: 100%;
+}
 </style>

+ 5 - 0
src/components/editview/leftToolBar/data.js

@@ -37,6 +37,11 @@ export const baseEditItems = [{
                     icon: ''
                 },
                 {
+                    name: '多边形',
+                    id: "EditBasePolygon",
+                    icon: ''
+                },
+                {
                     name: '圆形',
                     id: "EditBaseCircle",
                     icon: ''

+ 10 - 0
vue.config.js

@@ -0,0 +1,10 @@
+module.exports = {
+    devServer: {
+        // 关闭esline
+        overlay: {
+            warnings: false,
+            errors: false,
+        },
+    },
+    lintOnSave: false,
+}

+ 0 - 3
vue.config.ts

@@ -1,3 +0,0 @@
-module.exports = {
-    lintOnSave: false,
-}