Quellcode durchsuchen

Merge branch 'develop' of http://39.106.8.246:3003/web/persagy_topo_editer into develop

haojianlong vor 4 Jahren
Ursprung
Commit
6be6a3bb51

+ 1 - 1
src/api/httputils.ts

@@ -21,7 +21,7 @@ axiosservice.interceptors.request.use(
     (config) => {
         config.withCredentials = true // 允许携带token ,这个是解决跨域产生的相关问题
         config.headers = {
-            projectID: 'Pj1101050029',//项目id
+            projectID: '1',//项目id
         }
         return config
     },

+ 59 - 31
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -24,14 +24,14 @@
  * *********************************************************************************************************************
  */
 
-import { SGraphAddCommand, SGraphEditScene, SGraphEdit } from "./../edit/"
+import { SGraphDeleteListCommand, SGraphEditScene, SGraphEdit } from "./../edit/"
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { SArrowStyleType, SPoint, SRect } from '@persagy-web/draw';
 import { SItemStatus, SRectSelectItem } from '@persagy-web/big/lib';
-import { SGraphItem, SGraphSelectContainer } from "@persagy-web/graph/lib/";
+import { SGraphItem, SGraphSelectContainer, SOrderSetType } from "@persagy-web/graph/lib/";
 import { uuid } from "./until";
 import { SBaseArrow, SBaseEquipment, SBaseExpainEdit, SBasePipeUninTool, SBasePipe } from "./"
-
+import { PTopoParser } from "./../persagy-edit/"
 
 /**
  * big-edit 场景
@@ -89,7 +89,6 @@ export class SBaseEditScene extends SGraphEditScene {
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = null;
         this.finishCreated(item);
     } // Function addExplainItem()
@@ -119,7 +118,6 @@ export class SBaseEditScene extends SGraphEditScene {
         item.status = SItemStatus.Create;
         item.selectable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = item;
         item.connect("finishCreated", this, this.finishCreated);
         item.connect("onContextMenu", this, this.getItem);
@@ -151,18 +149,17 @@ export class SBaseEditScene extends SGraphEditScene {
             style: {
                 default: {
                     strokecolor: "#c0ccda",
-                    // url: require('./../../../assets/images/equip/' + legendObj.url),
+                    url: require('./../../../assets/images/equip/' + legendObj.url),
                 }
             }
         }
         const item = new SBaseEquipment(null, data);
         item.status = SItemStatus.Create;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         item.selectable = true;
         item.moveable = true;
         this.grabItem = item;
-        item.connect("finishCreated", this, this.finishCreated);
+        this.finishCreated(item)
         item.connect("onContextMenu", this, this.getItem);
         if (this.view) {
             this.view.update();
@@ -192,7 +189,6 @@ export class SBaseEditScene extends SGraphEditScene {
         item.status = SItemStatus.Create;
         item.selectable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = item;
         item.connect("finishCreated", this, this.finishCreated);
         item.connect("onContextMenu", this, this.getItem);
@@ -225,8 +221,7 @@ export class SBaseEditScene extends SGraphEditScene {
                 type: "BasePipeUninTool",
             },
             style: {
-                // uninToolType: cmdList[cmd] ? cmdList[cmd] : 2,  //2,3,4 分别分二头连接器、三头连接器、四头连接器
-                uninToolType: 2,  //2,3,4 分别分二头连接器、三头连接器、四头连接器
+                uninToolType: cmdList[cmd] ? cmdList[cmd] : 2,  //2,3,4 分别分二头连接器、三头连接器、四头连接器
                 default: {
                     strokecolor: "#c0ccda",
                 }
@@ -237,9 +232,8 @@ export class SBaseEditScene extends SGraphEditScene {
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = item;
-        item.connect("finishCreated", this, this.finishCreated);
+        this.finishCreated(item)
         item.connect("onContextMenu", this, this.getItem);
         if (this.view) {
             this.view.update();
@@ -278,6 +272,8 @@ export class SBaseEditScene extends SGraphEditScene {
             return []
         }
         let itemList = this.selectContainer.itemList;
+        // 推入 undo/redo 栈
+        this.undoStack.push(new SGraphDeleteListCommand(this, [...itemList]))
         itemList.forEach((element: any) => {
             this.removeItem(element)
         });
@@ -375,16 +371,29 @@ export class SBaseEditScene extends SGraphEditScene {
      * 复制
      */
     copy(): void {
-        const itemList = this.selectContainer.itemList
-        if (itemList.length) {
-            itemList.forEach(t => {
-                const data = JSON.parse(JSON.stringify(t.toData()))
-                data.ID = uuid()
-                this.copyString.push(data)
-
-            })
+        const itemList = this.save(false);
+        if (itemList) {
             // 生成复制字符串
-            console.log(this.copyString)
+            // 删除对应得id
+            itemList.markers.map((item: any) => {
+                delete item.id;
+                delete item.graphId;
+                delete item.markerId;
+                return item
+            });
+            itemList.nodes.map((item: any) => {
+                delete item.id;
+                delete item.graphId;
+                delete item.markerId;
+                return item
+            });
+            itemList.relations.map((item: any) => {
+                delete item.id;
+                delete item.graphId;
+                delete item.markerId;
+                return item
+            });
+            this.copyString = itemList
             // 获取input dom
             const input = document.createElement('input');
             input.setAttribute('id', 'COPYINPUT')
@@ -404,17 +413,36 @@ export class SBaseEditScene extends SGraphEditScene {
      */
     paste(): void {
         const copyList = JSON.parse(JSON.stringify(this.copyString));
-        copyList.forEach((t: any) => {
+        console.log('copyList', copyList)
+        const parserData = new PTopoParser();
+        parserData.parseData(copyList);
+        parserData.markers.forEach((item: SGraphEdit) => {
+            item.selectable = true;
+            item.moveable = true;
             if (this.view) {
-                t.Pos.X += 10,
-                    t.Pos.Y += 10
+                item.pos.x += 10 / this.view.scale
+                item.pos.y += 10 / this.view.scale
             }
-
-            t.moveable = true;
-            console.log('t', t)
-            this.addItem(t)
+            this.addItem(item);
         });
-        this.view ? this.view.update() : ''
-        console.log(this.view)
+        this.view ? this.view.update() : '';
     } // Function paste()
+
+    /**
+     * 图例置顶、置底
+     *
+     * @parm type 设置类型
+     */
+    setOrder(type: string) {
+        this.selectContainer.setOrder(SOrderSetType.[type])
+    }
+
+    /**
+     * 获取item (常用与场景外的调用F)
+     *
+     * @params isAll 是否为全部item数据
+     * @return obj 返回保存的数据接口
+     */
+    save(isAll: boolean = true): any {
+    } // Function save()
 } // Class SBaseEditScene

+ 2 - 0
src/components/editClass/edit/SGraphEdit.ts

@@ -50,6 +50,8 @@ export class SGraphEdit extends SGraphItem {
         this.update();
     } // Set status
 
+    /** 存储数据 */
+    data: any
     //////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //函数
     /**

+ 8 - 10
src/components/editClass/edit/SGraphEditScene.ts

@@ -89,7 +89,7 @@ export class SGraphEditScene extends SGraphScene {
      *
      * @param event   鼠标事件参数
      */
-     addLine(event: SMouseEvent): void {
+    addLine(event: SMouseEvent): void {
         const data = {
             /** 名称 */
             name: '基础直线',
@@ -114,7 +114,7 @@ export class SGraphEditScene extends SGraphScene {
         const lineItem = new SBaseLineEdit(null, data);
         lineItem.status = SItemStatus.Create;
         this.addItem(lineItem);
-        this.undoStack.push(new SGraphAddCommand(this, lineItem));
+        // this.undoStack.push(new SGraphAddCommand(this, lineItem));
         lineItem.selectable = true;
         this.grabItem = lineItem;
         lineItem.connect("finishCreated", this, this.finishCreated);
@@ -147,7 +147,6 @@ export class SGraphEditScene extends SGraphScene {
         item.status = SItemStatus.Create;
         item.selectable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = item;
         item.connect("finishCreated", this, this.finishCreated);
         item.connect("onContextMenu", this, this.getItem);
@@ -185,7 +184,7 @@ export class SGraphEditScene extends SGraphScene {
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
+        // this.undoStack.push(new SGraphAddCommand(this, item));
         this.finishCreated(item);
     } // Function addImageItem()
 
@@ -220,7 +219,6 @@ export class SGraphEditScene extends SGraphScene {
         item.moveTo(event.x, event.y);
         item.moveable = true;
         this.addItem(item);
-        this.undoStack.push(new SGraphAddCommand(this, item));
         this.grabItem = null;
         item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
@@ -251,7 +249,7 @@ export class SGraphEditScene extends SGraphScene {
         const rectItem = new SBaseRectEdit(null, data);
         rectItem.status = SItemStatus.Create;
         this.addItem(rectItem);
-        this.undoStack.push(new SGraphAddCommand(this, rectItem));
+        // this.undoStack.push(new SGraphAddCommand(this, rectItem));
         rectItem.selectable = true;
         rectItem.moveable = true;
         this.grabItem = rectItem;
@@ -285,7 +283,7 @@ export class SGraphEditScene extends SGraphScene {
         const triangleItem = new SBaseTriangleEdit(null, data);
         triangleItem.status = SItemStatus.Create;
         this.addItem(triangleItem);
-        this.undoStack.push(new SGraphAddCommand(this, triangleItem));
+        // this.undoStack.push(new SGraphAddCommand(this, triangleItem));
         triangleItem.selectable = true;
         triangleItem.moveable = true;
         this.grabItem = triangleItem;
@@ -320,7 +318,7 @@ export class SGraphEditScene extends SGraphScene {
         circleItem.selectable = true;
         this.grabItem = circleItem;
         this.addItem(circleItem);
-        this.undoStack.push(new SGraphAddCommand(this, circleItem));
+        // this.undoStack.push(new SGraphAddCommand(this, circleItem));
         circleItem.connect("finishCreated", this, this.finishCreated);
         circleItem.connect("onContextMenu", this, this.getItem);
         if (this.view) {
@@ -351,7 +349,7 @@ export class SGraphEditScene extends SGraphScene {
         polygonItem.status = SItemStatus.Create;
         polygonItem.selectable = true;
         this.addItem(polygonItem);
-        this.undoStack.push(new SGraphAddCommand(this, polygonItem));
+        // this.undoStack.push(new SGraphAddCommand(this, polygonItem));
         this.grabItem = polygonItem;
         polygonItem.connect("finishCreated", this, this.finishCreated);
         polygonItem.connect("onContextMenu", this, this.getItem);
@@ -383,7 +381,7 @@ export class SGraphEditScene extends SGraphScene {
         arrowItem.status = SItemStatus.Create;
         arrowItem.moveable = true;
         this.addItem(arrowItem);
-        this.undoStack.push(new SGraphAddCommand(this, arrowItem));
+        // this.undoStack.push(new SGraphAddCommand(this, arrowItem));
         arrowItem.selectable = true;
         this.grabItem = arrowItem;
         arrowItem.connect("finishCreated", this, this.finishCreated);

+ 86 - 0
src/components/editClass/edit/commands/SGraphDeleteListCommand.ts

@@ -0,0 +1,86 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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 { SGraphCommand } from "@persagy-web/graph/lib/commands/SGraphCommand";
+import { SGraphItem } from "@persagy-web/graph/lib/SGraphItem";
+import { SUndoCommand } from "@persagy-web/base";
+import { SGraphScene } from "@persagy-web/graph/";
+
+/**
+ * 删除多个 item 命令
+ *
+ * @author 韩耀龙 <han_yao_long@163.com>
+ */
+
+export class SGraphDeleteListCommand extends SGraphCommand {
+    /** 命令item对象    */
+    itemList: SGraphItem[];
+    desc: string = 'DeleteCommandList'
+    /** 命令名称    */
+    readonly command: string = "DeleteCommandList"
+    /** 命令item的父类   */
+    parent: SGraphItem | null;
+    constructor(scene: SGraphScene, itemList: SGraphItem[]) {
+        super(scene);
+        this.itemList = itemList;
+        this.parent = itemList[0].parent;
+    }
+    /**
+   * 合并命令
+   *
+   * @return  boolean 是否已执行合并
+   * */
+    mergeWith(command: SUndoCommand): boolean {
+        return false;
+    } // Function mergeWith()
+
+    /**
+     * 重做
+     *
+     * */
+    undo(): void {
+        this.itemList.map((item) => {
+            item.parent = this.parent;
+        })
+        console.log('undo this.itemList', this.itemList)
+        // @ts-ignore
+        this.parent.update();
+    } // Function redo()
+
+    /**
+     * 撤销
+     *
+     * */
+    redo(): void {
+        this.itemList.map((item) => {
+            item.parent = null;
+        })
+
+        console.log('redo this.itemList', this.itemList)
+        // @ts-ignore
+        this.parent.update();
+    } // Function undo()
+}

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

@@ -39,9 +39,10 @@ import { SBaseTextEdit } from "./items/SBaseTextEdit" ;
 import { SGraphCommand } from "./commands/SGraphCommand";
 import { SGraphAddCommand } from "./commands/SGraphAddCommand";
 import { SGraphMoveCommand } from "./commands/SGraphMoveCommand";
+import { SGraphDeleteListCommand } from "./commands/SGraphDeleteListCommand";
 import { SGraphPointListDelete } from "./commands/SGraphPointListDelete";
 import { SGraphPointListInsert } from "./commands/SGraphPointListInsert";
 import { SGraphPointListUpdate } from "./commands/SGraphPointListUpdate";
 import { SGraphPropertyCommand } from "./commands/SGraphPropertyCommand";
 
-export {SBasePolylineEdit, SBaseIconTextEdit, SBasePolygonEdit, SBaseTextEdit, SBaseImageEdit, SBaseLineEdit, SBaseCircleEdit, SBaseTriangleEdit, SBaseRectEdit, SBaseArrowEdit, SGraphEditScene, SGraphEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand }
+export {SGraphDeleteListCommand,SBasePolylineEdit, SBaseIconTextEdit, SBasePolygonEdit, SBaseTextEdit, SBaseImageEdit, SBaseLineEdit, SBaseCircleEdit, SBaseTriangleEdit, SBaseRectEdit, SBaseArrowEdit, SGraphEditScene, SGraphEdit, SGraphCommand, SGraphAddCommand, SGraphMoveCommand, SGraphPointListDelete, SGraphPointListInsert, SGraphPointListUpdate, SGraphPropertyCommand }

+ 1 - 0
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -66,6 +66,7 @@ export class PTopoParser extends SParser {
         }
 
     } // Function parseData()
+
     addMarker(data: Marker) {
         if (data.properties && data.properties.type) {
             switch (data.properties.type) {

+ 37 - 15
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -32,7 +32,7 @@ export class PTopoScene extends SBaseEditScene {
             }
         })
         this.emitChoice(itemList);
-    }
+    } // Function listChange()
 
     /**
      * 选中返回的选中item回调方法(用于场景的外部调用)
@@ -40,7 +40,7 @@ export class PTopoScene extends SBaseEditScene {
      * @param   list   选中的item数组
     */
     emitChoice(list: any) {
-    }
+    } // Function emitChoice()
 
     /**
      * 鼠标左键按下
@@ -91,13 +91,14 @@ export class PTopoScene extends SBaseEditScene {
             this.addBasePipe(event);
             this.clearCmdStatus();
         } else if (this.editCmd == "EditEuqipment" || this.legendObj) {
-            this.addEuqipment(event,this.legendObj)
+            this.addEuqipment(event, this.legendObj)
             this.clearCmdStatus();
         }
         else if (this.editCmd == "") {
             super.onMouseDown(event);
         }
-    }
+    } // Function onMouseDown()
+
     /**
      * 鼠标右键事件
      *
@@ -108,7 +109,7 @@ export class PTopoScene extends SBaseEditScene {
             this.getItem(null, [event])
         }
         return true
-    }
+    } // Function onContextMenu()
 
     /**
      * 修改 item 样式,数据等方法
@@ -143,7 +144,7 @@ export class PTopoScene extends SBaseEditScene {
             item[styletype] = styleValue;
         })
 
-    }
+    } // Function updateStyle()
 
     /**
      * item 创建完成后回调
@@ -153,15 +154,17 @@ export class PTopoScene extends SBaseEditScene {
     finishCreated(item: SGraphEdit): void {
         this.grabItem = null;
         item.status = SItemStatus.Normal;
+        this.undoStack.push(new SGraphAddCommand(this, item));
         this.selectContainer.clear();
         this.selectContainer.toggleItem(item);
-    }
+    } // Function finishCreated()
     /**
      * 修改 cmdstatus 函数;常在在业务中调用
      *
      */
     clearCmdStatus() {
-    }
+    } // Function clearCmdStatus()
+
     /**
      * 获取item (常用与场景外的调用F)
      * @param  event SMouseEvent 鼠标事件
@@ -169,7 +172,7 @@ export class PTopoScene extends SBaseEditScene {
      *
      */
     getItem(item: SGraphEdit | null, event: SMouseEvent[]) {
-    }
+    } // Function getItem()
     /**
      * 获取item (常用与场景外的调用F)
      * @param  event SMouseEvent 鼠标事件
@@ -177,21 +180,40 @@ export class PTopoScene extends SBaseEditScene {
      *
      */
     vueOnMouseDown(event: SMouseEvent) {
-    }
+    } // Function vueOnMouseDown()
 
     /**
      * 获取item (常用与场景外的调用F)
+     *
+     * @params isAll 是否为全部item数据
      * @return obj 返回保存的数据接口
      */
-    save() {
+    save(isAll: boolean = true) {
         if (!this.view) return;
         const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect'];
+        const NodeType: string[] = [];
+        const RelationType: string[] = [];
         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())
+        let nodeList;
+        if (isAll) {
+            nodeList = this.root.children;
+        } else {
+            nodeList =  this.selectContainer.itemList;
+        };
+        nodeList.forEach(item => {
+            if ((item instanceof SGraphEdit) && !(item instanceof SGraphSelectContainer)) {
+                // 添加节点数据
+                if (Marktype.includes(item.data.properties.type)) {
+                    markers.push(item.toData())
+                }
+                if (NodeType.includes(item.data.properties.type)) {
+                    nodes.push(item.toData())
+                }
+                if (RelationType.includes(item.data.properties.type)) {
+                    relations.push(item.toData())
+                }
             }
         });
         return {
@@ -199,5 +221,5 @@ export class PTopoScene extends SBaseEditScene {
             nodes,
             relations
         }
-    }
+    } // Function save()
 }

+ 9 - 4
src/components/editview/baseTopoEditer.vue

@@ -35,7 +35,7 @@ export default {
     };
   },
   computed: {
-    ...mapState(["choiceLegend", "legendObj"]),
+    ...mapState(["editCmd", "legendObj"]),
   },
   mounted() {
     this.canvasWidth = this.$refs.baseTopo.offsetWidth;
@@ -61,7 +61,7 @@ export default {
     // this.readMapmsg();
   },
   methods: {
-    ...mapMutations(["SETCHOICELEHEND"]),
+    ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
     // 恢复命令状态
     clearCmdStatus() {
       this.SETCHOICELEHEND("");
@@ -146,6 +146,10 @@ export default {
           console.log("res", res);
         });
       });
+      // 设置实例置顶置底
+      bus.$on("setOrder", (val) => {
+        this.scene.setOrder(val);
+      });
     },
     // 读取拓扑图
     readtopoMsg() {
@@ -177,10 +181,11 @@ export default {
     },
   },
   watch: {
-    choiceLegend(val) {
+    editCmd(val) {
+      console.log("val", val);
       if (this.scene) {
         // 设置当前编辑状态
-        this.scene.editCmd = this.choiceLegend;
+        this.scene.editCmd = val;
       }
     },
     legendObj: {

+ 1 - 1
src/components/editview/leftToolBar/legendList.vue

@@ -9,7 +9,7 @@
       @openAddEqupModle="showAddItemModel = true"
     ></equipmentList>
     <!-- 管线类 -->
-    <pipeList v-if="chiceStatus == 3" @getPipe="drawItem"></pipeList>
+    <pipeList v-if="chiceStatus == 3"></pipeList>
 
     <!-- 新增实例对象 -->
     <addItemModel

+ 5 - 1
src/components/editview/leftToolBar/pipeList.vue

@@ -84,14 +84,18 @@
   </div>
 </template>
 <script>
+import { mapMutations } from "vuex";
 export default {
   data() {
     return {};
   },
   methods: {
+    ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
     // 获取管道
     getPipe() {
-      this.$emit('getPipe','EditBasePipe')
+      // this.SETLEGENDOBJ(obj);
+      const cmd = "EditBasePipe";
+      this.SETCHOICELEHEND(cmd);
     },
   },
   mounted() {},

+ 43 - 85
src/components/editview/topToolBar.vue

@@ -2,110 +2,65 @@
   <div id="topToolBar">
     <div class="left">
       <ul>
-        <!-- <li class="zoom-window">
-          <div>
-            <img
-              class="lock"
-              :src="require(`./../../assets/images/缩小.png`)"
-              alt
-            />
-            <span class="percentage">{{scalePercent}}</span>
-            <img
-              class="lock"
-              :src="require(`./../../assets/images/放大 amplification.png`)"
-              alt
-            />
-          </div>
-          <span>缩放窗口</span>
-        </li>-->
         <li @click="topoUndo">
-          <img class="lock" :src="require(`./../../assets/images/undo.png`)" alt />
+          <img
+            class="lock"
+            :src="require(`./../../assets/images/undo.png`)"
+            alt
+          />
           <span>撤销</span>
         </li>
         <li @click="topoRedo">
-          <img class="lock" :src="require(`./../../assets/images/redo.png`)" alt />
+          <img
+            class="lock"
+            :src="require(`./../../assets/images/redo.png`)"
+            alt
+          />
           <span>重做</span>
         </li>
         <li @click="copy">
-          <img class="lock" :src="require(`./../../assets/images/copy.png`)" alt />
+          <img
+            class="lock"
+            :src="require(`./../../assets/images/copy.png`)"
+            alt
+          />
           <span>复制</span>
         </li>
         <li @click="paste">
-          <img class="lock" :src="require(`./../../assets/images/past.png`)" alt />
+          <img
+            class="lock"
+            :src="require(`./../../assets/images/past.png`)"
+            alt
+          />
           <span>粘贴</span>
         </li>
-
-        <!-- <li>
-          <a-dropdown :trigger="['click']">
-            <div class="ant-dropdown-link dropdown-flex" @click="e => e.preventDefault()">
-              <div>
-                <img class="lock" :src="require(`./../../assets/images/t-format.png`)" alt />
-                <div>图层</div>
-              </div>
-              <a-icon type="caret-down" class="down-icon" />
-            </div>
-            <a-menu slot="overlay">
-              <a-menu-item
-                :disabled="item.disable"
-                v-for="item in orderOptions"
-                :key="item.value"
-                @click="changeOrderItem(item.value)"
-              >
-                <img
-                  style="width: 16px;margin-right: 5px;"
-                  :src="require(`./../../assets/images/`+item.img+`.png`)"
-                  alt
-                />
-                <span>{{item.label}}</span>
-              </a-menu-item>
-            </a-menu>
-          </a-dropdown>
-        </li>-->
-        <!-- <li>
-          <a-dropdown :trigger="['click']">
-            <div class="ant-dropdown-link dropdown-flex" @click="e => e.preventDefault()">
-              <div>
-                <img class="lock" :src="require(`./../../assets/images/t-format.png`)" alt />
-                <div>对齐</div>
-              </div>
-              <a-icon type="caret-down" class="down-icon" />
-            </div>
-            <a-menu slot="overlay">
-              <a-menu-item
-                :disabled="item.disable"
-                v-for="item in alignmentOptions"
-                :key="item.value"
-                @click="changeAlignItem(item.value)"
-              >
-                <img
-                  style="width: 16px;margin-right: 5px;"
-                  :src="require(`./../../assets/images/`+item.img+`.png`)"
-                  alt
-                />
-                <span>{{item.label}}</span>
-              </a-menu-item>
-            </a-menu>
-          </a-dropdown>
-        </li>-->
-        <!-- <li>
-          <a-icon type="edit" />
-          <span>图层</span>
+        <li @click="deleteItem">
+          <img
+            class="lock"
+            :src="require(`./../../assets/images/delete.png`)"
+            alt
+          />
+          <span>删除</span>
         </li>
         <li>
-          <a-icon type="edit" />
+          <span class="lock icon iconfont">&#xe66d;</span>
           <span>组合</span>
         </li>
         <li>
-          <a-icon type="edit" />
+          <span class="icon iconfont">&#xe66e;</span>
           <span>打散</span>
-        </li>-->
-        <li>
-          <i :class="isLock?'el-icon-lock':'el-icon-unlock'" />
-          <span>{{!isLock?"解锁":"锁定"}}</span>
         </li>
-        <li @click="deleteItem">
-          <img class="lock" :src="require(`./../../assets/images/delete.png`)" alt />
-          <span>删除</span>
+        <li @click="setOrder('Top')">
+          <span class="icon iconfont icon-zhiding"></span>
+          <span>置顶</span>
+        </li>
+        <li @click="setOrder('Bottom')">
+          <span class="icon iconfont">&#xe66a;</span>
+          <span>置底</span>
+        </li>
+        <li>
+          <i :class="isLock ? 'el-icon-lock' : 'el-icon-unlock'" />
+          <span>{{ !isLock ? "解锁" : "锁定" }}</span>
         </li>
       </ul>
     </div>
@@ -143,6 +98,9 @@ export default {
     paste() {
       bus.$emit("paste");
     },
+    setOrder(val) {
+      bus.$emit("setOrder", val);
+    },
   },
 };
 </script>