Browse Source

类迁移

zhangyu 4 years ago
parent
commit
74ad0789bc

+ 1 - 1
package.json

@@ -21,7 +21,7 @@
     "@persagy-web/big": "2.2.19",
     "@persagy-web/draw": "2.2.8",
     "@persagy-web/graph": "2.2.23",
-    "@persagy-web/big-edit": "2.2.1",
+    "@persagy-web/big-edit": "2.2.4",
     "@persagy-web/edit": "2.2.2",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",

+ 411 - 453
src/components/editview/baseTopoEditer.vue

@@ -1,27 +1,17 @@
 <template>
-  <div class="baseTopo" id="baseTopo" ref="baseTopo">
-    <topoTooltip
-      v-show="showTooltip"
-      class="topoTooltip-box"
-      ref="topoTooltip"
-      @closeTooltip="showTooltip = false"
-      :havItem="havItem"
-    ></topoTooltip>
-    <canvas
-      style="border:none;outline:medium;"
-      id="persagy_plan"
-      :width="canvasWidth"
-      :height="canvasHeight"
-      tabindex="0"
-    ></canvas>
-  </div>
+    <div class="baseTopo" id="baseTopo" ref="baseTopo">
+        <topoTooltip
+            v-show="showTooltip"
+            class="topoTooltip-box"
+            ref="topoTooltip"
+            @closeTooltip="showTooltip = false"
+            :havItem="havItem"
+        ></topoTooltip>
+        <canvas style="border: none; outline: medium" id="persagy_plan" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
+    </div>
 </template>
 <script>
-import {
-  PTopoScene,
-  PTopoParser,
-  PTopoView,
-} from "@/components/editClass/persagy-edit";
+import { PTopoScene, PTopoParser, PTopoView } from "@/components/editClass/persagy-edit";
 import { SBaseEquipment } from "@/components/editClass/big-edit";
 import topoTooltip from "./topoTooltip.vue";
 import { mapState, mapMutations } from "vuex";
@@ -29,457 +19,425 @@ import base64ToFile from "@/utils/base64ToFile";
 import { v1 as uuidv1 } from "uuid";
 import bus from "@/bus/bus";
 import axios from "axios";
-import {
-  saveGroup,
-  readGroup,
-  uploadGroup,
-  getImageGroup,
-  readPubGroup,
-} from "@/api/editer";
+import { saveGroup, readGroup, uploadGroup, getImageGroup, readPubGroup } from "@/api/editer";
 import { publishGraph } from "@/api/home";
 import crypto from "crypto-js/";
 export default {
-  components: { topoTooltip },
-  data() {
-    return {
-      scene: null, //场景
-      view: null, //视图
-      canvasWidth: 700, //画布宽
-      canvasHeight: 700, //画布高
-      havItem: false, //右击是否选中item
-      showTooltip: false, //是否显示tooltip
-      topoContent: {}, // 读图后存储图所有数据
-      autoSave: null, // 自动保存定时器
-    };
-  },
-  computed: {
-    ...mapState([
-      "editCmd",
-      "legendObj",
-      "graphId",
-      "id",
-      "isPub",
-      "categoryId",
-      "projectId",
-      "version",
-    ]),
-  },
-  mounted() {
-    this.canvasWidth = this.$refs.baseTopo.offsetWidth;
-    this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
-    this.scene = new PTopoScene();
-    this.view = new PTopoView("persagy_plan");
-    this.view.scene = this.scene;
-    this.scene.clearCmdStatus = this.clearCmdStatus;
-    // 初始化bus绑定事件
-    this.initBusEvent();
-    // 右键事件
-    this.scene.getItem = this.onContextMenu;
-    this.scene.emitChoice = this.emitChoice;
-    //左键事件
-    this.scene.vueOnMouseDown = this.vueOnMouseDown;
-    // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
-    document.getElementById("baseTopo").oncontextmenu = function (e) {
-      return false;
-    };
-    // 读取底图
-    this.readtopoMsg();
-    // 2分钟自动保存
-    this.autoSave = setInterval(() => {
-      this.autoSaveTopo();
-    }, 120000);
-  },
-  methods: {
-    ...mapMutations([
-      "SETCHOICELEHEND",
-      "SETLEGENDOBJ",
-      "SETPROJECT",
-      "SETCATEGROY",
-      "SETISPUB",
-      "ADDEQUIPITEM",
-      "EDITEQUIPITEM",
-      "SETVERSION",
-    ]),
-    // 恢复命令状态
-    clearCmdStatus() {
-      this.SETCHOICELEHEND("");
-      this.SETLEGENDOBJ(null);
-    },
-    // 右键获取item
-    onContextMenu(item, [event]) {
-      this.showTooltip = true;
-      if (item) {
-        this.havItem = true;
-      } else {
-        this.havItem = false;
-      }
-      const doms = document.getElementsByClassName("topoTooltip-box")[0];
-      doms.style.left = event.offsetX + "px";
-      doms.style.top = event.offsetY + "px";
-    },
-    // 左键事键
-    vueOnMouseDown(e) {
-      //  关闭tooltip
-      this.showTooltip = false;
-    },
-    // 选中后的回调函数
-    emitChoice(itemList) {
-      bus.$emit("emitChoice", itemList);
+    components: { topoTooltip },
+    data() {
+        return {
+            scene: null, //场景
+            view: null, //视图
+            canvasWidth: 700, //画布宽
+            canvasHeight: 700, //画布高
+            havItem: false, //右击是否选中item
+            showTooltip: false, //是否显示tooltip
+            topoContent: {}, // 读图后存储图所有数据
+            autoSave: null, // 自动保存定时器
+        };
     },
-    //初始化bus绑定事件
-    initBusEvent() {
-      // 改变样式
-      bus.$off("updateStyle");
-      bus.$on("updateStyle", (type, val) => {
-        this.scene.updateStyle(type, val);
-      });
-      // 撤销
-      bus.$off("topoUndo");
-      bus.$on("topoUndo", (val) => {
-        this.scene.undo();
-      });
-      // 重做
-      bus.$off("topoRedo");
-      bus.$on("topoRedo", (val) => {
-        this.scene.redo();
-      });
-      // 删除
-      bus.$off("deleteItem");
-      bus.$on("deleteItem", (val) => {
-        this.scene.deleteItem([val]);
-        this.EDITEQUIPITEM();
-      });
-      // 复制
-      bus.$off("copy");
-      bus.$on("copy", (val) => {
-        this.scene.copy();
-      });
-      // 粘贴
-      bus.$off("paste");
-      bus.$on("paste", (val) => {
-        this.scene.paste();
-      });
-      // 保存
-      bus.$off("saveTopo");
-      bus.$on("saveTopo", (val) => {
-        this.saveTopoDraft();
-      });
-      // 设置实例置顶置底
-      bus.$off("setOrder");
-      bus.$on("setOrder", (val) => {
-        this.scene.setOrder(val);
-      });
-      // 设置实例status状态
-      bus.$off("setItemStatus");
-      bus.$on("setItemStatus", (val) => {
-        this.scene.setItemStatus();
-      });
-      // 下载图片
-      bus.$off("saveTopoImg");
-      bus.$on("saveTopoImg", () => {
-        // 隐藏选择器
-        this.scene.selectContainer.clear();
-        this.view.saveImageSize(
-          `${this.topoContent.name}.png`,
-          "png",
-          this.canvasWidth,
-          this.canvasHeight
-        );
-      });
-      // 发布图片
-      bus.$off("issueTopo");
-      bus.$on("issueTopo", () => {
-        this.saveTopoDraft().then(() => {
-          this.issueDraft();
-        });
-      });
-      // 手动添加设备实例
-      bus.$off("addEquipment");
-      bus.$on("addEquipment", (val) => {
-        this.addEquipmentList(val);
-      });
-      // 更改设备信息点
-      bus.$off("changeEquipMsgPoint");
-      bus.$on("changeEquipMsgPoint", (val) => {
-        this.scene.changeEquipMsgPoint(val);
-      });
-      // 选中item
-      bus.$off("chioceItem");
-      bus.$on("chioceItem", (item) => {
-        this.scene.toggleItem(item);
-      });
+    computed: {
+        ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version"]),
     },
-    // 读取拓扑图
-    readtopoMsg() {
-      const obj = {
-        graphId: this.graphId,
-        id: this.id,
-      };
-      if (this.isPub == 1) {
-        // 已发布
-        readPubGroup(obj).then((res) => {
-          this.getDataSuc(res);
-        });
-      } else {
-        readGroup(obj).then((res) => {
-          this.getDataSuc(res);
-        });
-      }
+    mounted() {
+        this.canvasWidth = this.$refs.baseTopo.offsetWidth;
+        this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
+        this.scene = new PTopoScene();
+        this.view = new PTopoView("persagy_plan");
+        this.view.scene = this.scene;
+        this.scene.clearCmdStatus = this.clearCmdStatus;
+        // 初始化bus绑定事件
+        this.initBusEvent();
+        // 右键事件
+        this.scene.getItem = this.onContextMenu;
+        this.scene.emitChoice = this.emitChoice;
+        //左键事件
+        this.scene.vueOnMouseDown = this.vueOnMouseDown;
+        // 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
+        document.getElementById("baseTopo").oncontextmenu = function (e) {
+            return false;
+        };
+        // 读取底图
+        this.readtopoMsg();
+        // 2分钟自动保存
+        this.autoSave = setInterval(() => {
+            this.autoSaveTopo();
+        }, 120000);
     },
-    // 读图成功回调
-    getDataSuc(res) {
-      let anchorList = []; //保存锚点对象
-      if (res.result == "failure") return;
-      this.SETCATEGROY(res.content);
-      this.topoContent = res.content;
-      const parse = new PTopoParser();
-      parse.parseData(res.content.elements);
-      parse.markers.forEach((item) => {
-        item.selectable = true;
-        item.moveable = true;
-        item.connect("finishCreated", this.scene, this.scene.finishCreated);
-        item.connect("onContextMenu", this, this.scene.getItem);
-        this.scene.addItem(item);
-      });
-      parse.nodes.forEach((item) => {
-        item.connect("finishCreated", this.scene, this.scene.finishCreated);
-        item.connect("onContextMenu", this, this.scene.getItem);
-        this.scene.addItem(item);
-        // 如果为设备则存于vuex中便于联动
-        if (item instanceof SBaseEquipment) {
-          anchorList = anchorList.concat(item.anchorList);
-          this.ADDEQUIPITEM(item);
-        }
-      });
-      parse.relations.forEach((t) => {
-        // 设置锚点
-        if (t.anchor1Id) {
-          let startAnc = null;
-          anchorList.forEach((aItem) => {
-            if (aItem.id == t.anchor1Id) {
-              startAnc = aItem;
-            }
-          });
-
-          if (startAnc) {
-            startAnc.isConnected = true;
-            startAnc.parent?.connect("changePos", t, t.changePos);
-            t.startAnchor = startAnc || null;
-            console.log("startAnc", startAnc);
-          }
-        }
-        if (t.anchor12d) {
-          let endAnc = null;
-          anchorList.forEach((aItem) => {
-            if (aItem.id == t.anchor12d) {
-              endAnc = aItem;
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ", "SETPROJECT", "SETCATEGROY", "SETISPUB", "ADDEQUIPITEM", "EDITEQUIPITEM", "SETVERSION"]),
+        // 恢复命令状态
+        clearCmdStatus() {
+            this.SETCHOICELEHEND("");
+            this.SETLEGENDOBJ(null);
+        },
+        // 右键获取item
+        onContextMenu(item, [event]) {
+            this.showTooltip = true;
+            if (item) {
+                this.havItem = true;
+            } else {
+                this.havItem = false;
             }
-          });
-          if (endAnc) {
-            endAnc.isConnected = true;
-            endAnc.parent?.connect("changePos", t, t.changePos);
-            t.endAnchor = endAnc || null;
-          }
-        }
-        t.connect("finishCreated", this.scene, this.scene.finishCreated);
-        t.connect("onContextMenu", this, this.scene.getItem);
-        this.scene.addItem(t);
-      });
-    },
-    // 生成快照并保存草稿
-    saveTopoDraft() {
-      const uuid = uuidv1();
-      return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)]).then(
-        (vals) => {
-          // 重设版本号
-          this.SETVERSION(vals[1].version);
-          this.$message.success(`保存成功${vals[1].version}`);
-        }
-      );
-    },
-    // 生成快照
-    generateSnap(uuid) {
-      // 隐藏选择器
-      this.scene.selectContainer.clear();
-      setTimeout(() => {
-        // base64数据
-        const data = this.view.imageUrl("png");
-        // 根据base64生成file
-        const file = base64ToFile(data);
-        const reader = new FileReader();
-        const fileType = file.name.split(".");
-        const imgType = fileType[fileType.length - 1];
-        return new Promise((resolve, reject) => {
-          reader.onloadend = function () {
-            // 这个事件在读取结束后,无论成功或者失败都会触发
-            if (reader.error) {
-              console.log("reader error", reader.error);
-              reject(reader.error);
+            const doms = document.getElementsByClassName("topoTooltip-box")[0];
+            doms.style.left = event.offsetX + "px";
+            doms.style.top = event.offsetY + "px";
+        },
+        // 左键事键
+        vueOnMouseDown(e) {
+            //  关闭tooltip
+            this.showTooltip = false;
+        },
+        // 选中后的回调函数
+        emitChoice(itemList) {
+            bus.$emit("emitChoice", itemList);
+        },
+        //初始化bus绑定事件
+        initBusEvent() {
+            // 改变样式
+            bus.$off("updateStyle");
+            bus.$on("updateStyle", (type, val) => {
+                this.scene.updateStyle(type, val);
+            });
+            // 撤销
+            bus.$off("topoUndo");
+            bus.$on("topoUndo", (val) => {
+                this.scene.undo();
+            });
+            // 重做
+            bus.$off("topoRedo");
+            bus.$on("topoRedo", (val) => {
+                this.scene.redo();
+            });
+            // 删除
+            bus.$off("deleteItem");
+            bus.$on("deleteItem", (val) => {
+                this.scene.deleteItem([val]);
+                this.EDITEQUIPITEM();
+            });
+            // 复制
+            bus.$off("copy");
+            bus.$on("copy", (val) => {
+                this.scene.copy();
+            });
+            // 粘贴
+            bus.$off("paste");
+            bus.$on("paste", (val) => {
+                this.scene.paste();
+            });
+            // 保存
+            bus.$off("saveTopo");
+            bus.$on("saveTopo", (val) => {
+                this.saveTopoDraft();
+            });
+            // 设置实例置顶置底
+            bus.$off("setOrder");
+            bus.$on("setOrder", (val) => {
+                this.scene.setOrder(val);
+            });
+            // 设置实例status状态
+            bus.$off("setItemStatus");
+            bus.$on("setItemStatus", (val) => {
+                this.scene.setItemStatus();
+            });
+            // 下载图片
+            bus.$off("saveTopoImg");
+            bus.$on("saveTopoImg", () => {
+                // 隐藏选择器
+                this.scene.selectContainer.clear();
+                this.view.saveImageSize(`${this.topoContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
+            });
+            // 发布图片
+            bus.$off("issueTopo");
+            bus.$on("issueTopo", () => {
+                this.saveTopoDraft().then(() => {
+                    this.issueDraft();
+                });
+            });
+            // 手动添加设备实例
+            bus.$off("addEquipment");
+            bus.$on("addEquipment", (val) => {
+                this.addEquipmentList(val);
+            });
+            // 更改设备信息点
+            bus.$off("changeEquipMsgPoint");
+            bus.$on("changeEquipMsgPoint", (val) => {
+                this.scene.changeEquipMsgPoint(val);
+            });
+            // 选中item
+            bus.$off("chioceItem");
+            bus.$on("chioceItem", (item) => {
+                this.scene.toggleItem(item);
+            });
+        },
+        // 读取拓扑图
+        readtopoMsg() {
+            const obj = {
+                graphId: this.graphId,
+                id: this.id,
+            };
+            if (this.isPub == 1) {
+                // 已发布
+                readPubGroup(obj).then((res) => {
+                    this.getDataSuc(res);
+                });
             } else {
-              // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
-              const xhr = new XMLHttpRequest();
-              xhr.open(
-                "POST",
-                `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
-              );
-              xhr.send(reader.result);
-              xhr.onreadystatechange = function () {
-                if (xhr.readyState == 4) {
-                  if (xhr.status == 200) {
-                    resolve(xhr);
-                  }
+                readGroup(obj).then((res) => {
+                    this.getDataSuc(res);
+                });
+            }
+        },
+        // 读图成功回调
+        getDataSuc(res) {
+            let anchorList = []; //保存锚点对象
+            if (res.result == "failure") return;
+            this.SETCATEGROY(res.content);
+            this.topoContent = res.content;
+            const parse = new PTopoParser();
+            parse.parseData(res.content.elements);
+            parse.markers.forEach((item) => {
+                item.selectable = true;
+                item.moveable = true;
+                item.connect("finishCreated", this.scene, this.scene.finishCreated);
+                item.connect("onContextMenu", this, this.scene.getItem);
+                this.scene.addItem(item);
+            });
+            parse.nodes.forEach((item) => {
+                item.connect("finishCreated", this.scene, this.scene.finishCreated);
+                item.connect("onContextMenu", this, this.scene.getItem);
+                this.scene.addItem(item);
+                // 如果为设备则存于vuex中便于联动
+                if (item instanceof SBaseEquipment) {
+                    anchorList = anchorList.concat(item.anchorList);
+                    this.ADDEQUIPITEM(item);
                 }
-              };
+            });
+            parse.relations.forEach((t) => {
+                // 设置锚点
+                if (t.anchor1Id) {
+                    let startAnc = null;
+                    anchorList.forEach((aItem) => {
+                        if (aItem.id == t.anchor1Id) {
+                            startAnc = aItem;
+                        }
+                    });
+
+                    if (startAnc) {
+                        startAnc.isConnected = true;
+                        startAnc.parent?.connect("changePos", t, t.changePos);
+                        t.startAnchor = startAnc || null;
+                        console.log("startAnc", startAnc);
+                    }
+                }
+                if (t.anchor12d) {
+                    let endAnc = null;
+                    anchorList.forEach((aItem) => {
+                        if (aItem.id == t.anchor12d) {
+                            endAnc = aItem;
+                        }
+                    });
+                    if (endAnc) {
+                        endAnc.isConnected = true;
+                        endAnc.parent?.connect("changePos", t, t.changePos);
+                        t.endAnchor = endAnc || null;
+                    }
+                }
+                t.connect("finishCreated", this.scene, this.scene.finishCreated);
+                t.connect("onContextMenu", this, this.scene.getItem);
+                this.scene.addItem(t);
+            });
+        },
+        // 生成快照并保存草稿
+        saveTopoDraft() {
+            const uuid = uuidv1();
+            return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)]).then((vals) => {
+                // 重设版本号
+                this.SETVERSION(vals[1].version);
+                this.$message.success(`保存成功${vals[1].version}`);
+            });
+        },
+        // 生成快照
+        generateSnap(uuid) {
+            // 隐藏选择器
+            this.scene.selectContainer.clear();
+            setTimeout(() => {
+                // base64数据
+                const data = this.view.imageUrl("png");
+                // 根据base64生成file
+                const file = base64ToFile(data);
+                const reader = new FileReader();
+                const fileType = file.name.split(".");
+                const imgType = fileType[fileType.length - 1];
+                return new Promise((resolve, reject) => {
+                    reader.onloadend = function () {
+                        // 这个事件在读取结束后,无论成功或者失败都会触发
+                        if (reader.error) {
+                            console.log("reader error", reader.error);
+                            reject(reader.error);
+                        } else {
+                            // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
+                            const xhr = new XMLHttpRequest();
+                            xhr.open(
+                                "POST",
+                                `/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=${uuid}.${imgType}`
+                            );
+                            xhr.send(reader.result);
+                            xhr.onreadystatechange = function () {
+                                if (xhr.readyState == 4) {
+                                    if (xhr.status == 200) {
+                                        resolve(xhr);
+                                    }
+                                }
+                            };
+                        }
+                    };
+                    reader.readAsArrayBuffer(file);
+                });
+            }, 80);
+        },
+        // 保存草稿
+        saveDraft(uuid) {
+            const elements = this.scene.save();
+            const obj = {
+                elements,
+                name: this.topoContent.name, // 名称
+                categoryId: this.categoryId, // 图分类ID
+                projectId: this.projectId, // 项目ID
+                label: this.topoContent.label,
+                buildingId: "1", // 建筑ID
+                floorId: "1", // 楼层id
+                note: "1", // 图说明
+                pic: `${uuid}.png`,
+                graphId: this.graphId,
+                id: this.id,
+                version: this.version,
+            };
+            return new Promise((resolve, reject) => {
+                saveGroup(obj).then((res) => {
+                    // 如果是从已发布跳转过来
+                    if (this.isPub == 1) {
+                        // 设置发布状态为 未发布
+                        this.SETISPUB(0);
+                        const gid = res.entityList[0].graphId;
+                        const id = res.entityList[0].id;
+                        // 重设图id 与 id
+                        this.SETPROJECT({ graphId: gid, id: id });
+                        // 修改url参数
+                        this.$router.push({
+                            name: "Editer",
+                            query: {
+                                graphId: gid,
+                                id: id,
+                                categoryName: encodeURI(this.categoryName),
+                                isPub: 0,
+                            },
+                        });
+                    }
+                    resolve(res.entityList[0]);
+                });
+            });
+        },
+        // 自动保存
+        autoSaveTopo() {
+            if (this.scene && this.scene.undoStack.isChange) {
+                this.saveTopoDraft().then(() => {
+                    this.scene.undoStack.isChange = false;
+                });
             }
-          };
-          reader.readAsArrayBuffer(file);
-        });
-      }, 80);
-    },
-    // 保存草稿
-    saveDraft(uuid) {
-      const elements = this.scene.save();
-      const obj = {
-        elements,
-        name: this.topoContent.name, // 名称
-        categoryId: this.categoryId, // 图分类ID
-        projectId: this.projectId, // 项目ID
-        label: this.topoContent.label,
-        buildingId: "1", // 建筑ID
-        floorId: "1", // 楼层id
-        note: "1", // 图说明
-        pic: `${uuid}.png`,
-        graphId: this.graphId,
-        id: this.id,
-        version: this.version,
-      };
-      return new Promise((resolve, reject) => {
-        saveGroup(obj).then((res) => {
-          // 如果是从已发布跳转过来
-          if (this.isPub == 1) {
-            // 设置发布状态为 未发布
-            this.SETISPUB(0);
-            const gid = res.entityList[0].graphId;
-            const id = res.entityList[0].id;
-            // 重设图id 与 id
-            this.SETPROJECT({ graphId: gid, id: id });
-            // 修改url参数
-            this.$router.push({
-              name: "Editer",
-              query: {
-                graphId: gid,
-                id: id,
-                categoryName: encodeURI(this.categoryName),
-                isPub: 0,
-              },
+        },
+        // 发布草稿
+        issueDraft() {
+            const pa = {
+                graphId: this.graphId,
+                id: this.id,
+            };
+            publishGraph(pa).then((res) => {
+                this.$message.success("发布成功");
             });
-          }
-          resolve(res.entityList[0]);
-        });
-      });
-    },
-    // 自动保存
-    autoSaveTopo() {
-      if (this.scene && this.scene.undoStack.isChange) {
-        this.saveTopoDraft().then(() => {
-          this.scene.undoStack.isChange = false;
-        });
-      }
-    },
-    // 发布草稿
-    issueDraft() {
-      const pa = {
-        graphId: this.graphId,
-        id: this.id,
-      };
-      publishGraph(pa).then((res) => {
-        this.$message.success("发布成功");
-      });
-    },
-    // 手动添加设备
-    addEquipmentList(list) {
-      const parse = new PTopoParser();
-      list.forEach((item, i) => {
-        const x = (i + 1) * 100 + 300;
-        const baseUrl =
-          "/image-service/common/image_get?systemId=dataPlatform&key=";
-        const url = baseUrl + item.url;
-        let svg2Base = "";
-        let EquipHeight = this.canvasHeight - 100;
+        },
+        // 手动添加设备
+        addEquipmentList(list) {
+            const parse = new PTopoParser();
+            list.forEach((item, i) => {
+                const x = (i + 1) * 100 + 300;
+                const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
+                const url = baseUrl + item.url;
+                let svg2Base = "";
+                let EquipHeight = this.canvasHeight - 100;
 
-        let data = {
-          nodeId: uuidv1(),
-          /** 名称 */
-          name: "基础设备",
-          /** 返回物理世界对象 ID 列表 */
-          attachObjectIds: [item.id],
-          size: { width: 50, height: 50 },
-          /** 图标 (Image),线类型 (Line) */
-          type: "Image",
-          /** 位置 */
-          pos: { x: x, y: 100 },
-          /** 由应用自己定义 */
-          properties: {
-            type: "BaseEquipment",
-            classCode: item.classCode, // 设备类型
-            localId: item.localId, // 本地编码
-            localName: item.localName, //本地名称
-          },
-          style: {
-            default: {
-              strokecolor: "#c0ccda",
-              url: url,
-              base64Url: "",
+                let data = {
+                    nodeId: uuidv1(),
+                    /** 名称 */
+                    name: "基础设备",
+                    /** 返回物理世界对象 ID 列表 */
+                    attachObjectIds: [item.id],
+                    size: { width: 50, height: 50 },
+                    /** 图标 (Image),线类型 (Line) */
+                    type: "Image",
+                    /** 位置 */
+                    pos: { x: x, y: 100 },
+                    /** 由应用自己定义 */
+                    properties: {
+                        type: "BaseEquipment",
+                        classCode: item.classCode, // 设备类型
+                        localId: item.localId, // 本地编码
+                        localName: item.localName, //本地名称
+                    },
+                    style: {
+                        default: {
+                            strokecolor: "#c0ccda",
+                            url: url,
+                            base64Url: "",
+                        },
+                    },
+                };
+                parse.addNode(data);
+            });
+            // 添加到 scence 中
+            parse.nodes.forEach((item) => {
+                item.connect("finishCreated", this.scene, this.scene.finishCreated);
+                item.connect("onContextMenu", this, this.scene.getItem);
+                this.scene.addItem(item);
+                // 如果为设备则存于vuex中便于联动
+                if (item instanceof SBaseEquipment) {
+                    this.ADDEQUIPITEM(item);
+                }
+            });
+        },
+    },
+    watch: {
+        editCmd(val) {
+            if (this.scene) {
+                // 设置当前编辑状态
+                this.scene.editCmd = val;
+            }
+        },
+        legendObj: {
+            handler: function (val, oldVal) {
+                this.scene.legendObj = val;
             },
-          },
-        };
-        parse.addNode(data);
-      });
-      // 添加到 scence 中
-      parse.nodes.forEach((item) => {
-        item.connect("finishCreated", this.scene, this.scene.finishCreated);
-        item.connect("onContextMenu", this, this.scene.getItem);
-        this.scene.addItem(item);
-        // 如果为设备则存于vuex中便于联动
-        if (item instanceof SBaseEquipment) {
-          this.ADDEQUIPITEM(item);
-        }
-      });
+            deep: true,
+        },
     },
-  },
-  watch: {
-    editCmd(val) {
-      if (this.scene) {
-        // 设置当前编辑状态
-        this.scene.editCmd = val;
-      }
+    created() {
+        this.SETPROJECT(this.$route.query);
+        this.SETISPUB(this.$route.query.isPub);
+        this.categoryName = decodeURI(this.$route.query.categoryName);
     },
-    legendObj: {
-      handler: function (val, oldVal) {
-        this.scene.legendObj = val;
-      },
-      deep: true,
+    beforeDestroy() {
+        clearInterval(this.autoSave);
     },
-  },
-  created() {
-    this.SETPROJECT(this.$route.query);
-    this.SETISPUB(this.$route.query.isPub);
-    this.categoryName = decodeURI(this.$route.query.categoryName);
-  },
-  beforeDestroy() {
-    clearInterval(this.autoSave);
-  },
 };
 </script>
 <style lang="less" scoped>
 .baseTopo {
-  width: 100%;
-  height: 100%;
-  position: relative;
-  .topoTooltip-box {
-    position: absolute;
-    left: 0;
-    top: 0;
-  }
+    width: 100%;
+    height: 100%;
+    position: relative;
+    .topoTooltip-box {
+        position: absolute;
+        left: 0;
+        top: 0;
+    }
 }
 </style>

+ 141 - 146
src/components/editview/leftToolBar.vue

@@ -1,177 +1,172 @@
 <!-- 左侧工具栏 -->
 <template>
-  <div class="left-tool-bar">
-    <div class="btn-list">
-      <ul>
-        <li
-          v-for="(item, index) in leftData"
-          :key="index"
-          :class="{ 'btn-active': chiceStatus == index }"
-          @click="openTool(index)"
-        >
-          <!-- <img
+    <div class="left-tool-bar">
+        <div class="btn-list">
+            <ul>
+                <li v-for="(item, index) in leftData" :key="index" :class="{ 'btn-active': chiceStatus == index }" @click="openTool(index)">
+                    <!-- <img
             width="20px"
             height="20px"
             :src="chiceStatus == index ? item.activeIcon : item.icon"
             alt
           /> -->
-          <span :class="['icon', 'iconfont', 'fontstyle', item.icon]"></span>
-          <span>{{ item.name }}</span>
-          <div class="btborder"></div>
-        </li>
-      </ul>
+                    <span :class="['icon', 'iconfont', 'fontstyle', item.icon]"></span>
+                    <span>{{ item.name }}</span>
+                    <div class="btborder"></div>
+                </li>
+            </ul>
+        </div>
+        <el-drawer
+            size="220px"
+            :with-header="false"
+            :destroy-on-close="true"
+            :visible.sync="drawer"
+            :direction="direction"
+            :modal="false"
+            :modal-append-to-body="false"
+            :show-close="true"
+            :before-close="handleClose"
+            :wrapperClosable="false"
+            custom-class="drawer-box"
+        >
+            <legendList :chiceStatus="chiceStatus"></legendList>
+        </el-drawer>
     </div>
-    <el-drawer
-      size="220px"
-      :with-header="false"
-      :destroy-on-close="true"
-      :visible.sync="drawer"
-      :direction="direction"
-      :modal="false"
-      :modal-append-to-body="false"
-      :show-close="true"
-      :before-close="handleClose"
-      :wrapperClosable="false"
-      custom-class="drawer-box"
-    >
-      <legendList :chiceStatus="chiceStatus"></legendList>
-    </el-drawer>
-  </div>
 </template>
 <script>
 const leftData = [
-  {
-    id: "tongyong",
-    name: "通用",
-    icon: "icon-tongyong",
-  },
-  {
-    id: "equipment",
-    name: "设备",
-    icon: "icon-shebei",
-  },
-  {
-    id: "equipList",
-    name: "设备组",
-    icon: "icon-shebeizu",
-  },
-  {
-    id: "guanxian",
-    name: "管线",
-    icon: "icon-guanxian",
-  },
-  {
-    id: "space",
-    name: "空间",
-    icon: "icon-kongjian",
-  },
-  {
-    id: "same",
-    name: "楼层",
-    icon: "icon-louceng",
-  },
+    {
+        id: "tongyong",
+        name: "通用",
+        icon: "icon-tongyong",
+    },
+    {
+        id: "equipment",
+        name: "设备",
+        icon: "icon-shebei",
+    },
+    {
+        id: "equipList",
+        name: "设备组",
+        icon: "icon-shebeizu",
+    },
+    {
+        id: "guanxian",
+        name: "管线",
+        icon: "icon-guanxian",
+    },
+    {
+        id: "space",
+        name: "空间",
+        icon: "icon-kongjian",
+    },
+    {
+        id: "same",
+        name: "楼层",
+        icon: "icon-louceng",
+    },
 ];
 import legendList from "./leftToolBar/legendList.vue";
 import { mapMutations } from "vuex";
 export default {
-  components: { legendList },
-  data() {
-    return {
-      drawer: false,
-      chiceStatus: -1, //选中按钮状态
-      direction: "ltr",
-      leftData,
-    };
-  },
-  methods: {
-    ...mapMutations(["SETCHOICELEHEND"]),
-    handleClose() {
-      this.drawer = false;
-    },
-    openTool(val) {
-      if (val != this.chiceStatus) {
-        this.chiceStatus = val;
-        if (this.drawer) {
-          this.drawer = false;
-          4;
-          setTimeout(() => {
-            this.drawer = true;
-          }, 300);
-        } else {
-          this.drawer = true;
-        }
-      } else {
-        this.drawer = !this.drawer;
-        this.chiceStatus = -1;
-      }
+    components: { legendList },
+    data() {
+        return {
+            drawer: false,
+            chiceStatus: -1, //选中按钮状态
+            direction: "ltr",
+            leftData,
+        };
     },
-    choiceStatus() {
-      this.chiceStatus = 0;
-      this.drawer = false;
-      this.SETCHOICELEHEND("");
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND"]),
+        handleClose() {
+            this.drawer = false;
+        },
+        openTool(val) {
+            if (val != this.chiceStatus) {
+                this.chiceStatus = val;
+                if (this.drawer) {
+                    this.drawer = false;
+                    4;
+                    setTimeout(() => {
+                        this.drawer = true;
+                    }, 300);
+                } else {
+                    this.drawer = true;
+                }
+            } else {
+                this.drawer = !this.drawer;
+                this.chiceStatus = -1;
+            }
+        },
+        choiceStatus() {
+            this.chiceStatus = 0;
+            this.drawer = false;
+            this.SETCHOICELEHEND("");
+        },
     },
-  },
 };
 </script>
 <style lang="less" scoped>
 ul,
 li {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 .left-tool-bar {
-  height: calc(~"100% - 2px");
-  position: relative;
-  .btn-list {
-    height: 100%;
-    z-index: 99;
+    height: calc(~"100% - 2px");
     position: relative;
-    ul {
-      width: 54px;
-      height: 100%;
-      border-top: 1px solid #eee;
-      border-right: 1px solid #eee;
-      li {
-        width: 100%;
-        height: 58px;
-        display: flex;
-        justify-content: center;
-        align-items: center;
-        flex-direction: column;
-        cursor: pointer;
-        border-right: 2px solid rgba(0, 145, 255, 0);
-        .btborder {
-          width: 30px;
-          height: 1px;
-          background: #eee;
-        }
-        span {
-          color: #8d9399;
-          font-size: 12px;
-        }
-        .fontstyle {
-          font-size: 18px;
-        }
-      }
-      li:hover {
-        background: #f5f6f7;
-      }
-      .btn-active {
-        background: #e1f2ff !important;
-        border-right: 2px solid #0091ff;
-        span {
-          color: #0091ff;
+    .btn-list {
+        height: 100%;
+        z-index: 99;
+        position: relative;
+        ul {
+            width: 54px;
+            height: 100%;
+            border-top: 1px solid #eee;
+            border-right: 1px solid #eee;
+            li {
+                width: 100%;
+                height: 58px;
+                display: flex;
+                justify-content: center;
+                align-items: center;
+                flex-direction: column;
+                cursor: pointer;
+                border-right: 2px solid rgba(0, 145, 255, 0);
+                .btborder {
+                    width: 30px;
+                    height: 1px;
+                    background: #eee;
+                }
+                span {
+                    color: #8d9399;
+                    font-size: 12px;
+                }
+                .fontstyle {
+                    font-size: 18px;
+                }
+            }
+            li:hover {
+                background: #f5f6f7;
+            }
+            .btn-active {
+                background: #e1f2ff !important;
+                border-right: 2px solid #0091ff;
+                span {
+                    color: #0091ff;
+                }
+            }
         }
-      }
     }
-  }
 }
 .el-drawer__wrapper {
-  left: 64px;
-  top: 86px;
-  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
-  width: 221px;
-  border-right: 1px solid #eee;
+    left: 64px;
+    top: 86px;
+    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
+    width: 221px;
+    border-right: 1px solid #eee;
 }
 </style>

+ 14 - 16
src/components/editview/rightPropertyBar.vue

@@ -1,28 +1,26 @@
 <!--右侧属性栏-->
 <template>
-  <div class="right-property-bar">
-     <property></property>
-  </div>
+    <div class="right-property-bar">
+        <property></property>
+    </div>
 </template>
 <script>
 import property from "./rightPropertyBar/property";
 export default {
-  components: {
-    property,
-  },
-  data() {
-    return {
-
-    };
-  },
+    components: {
+        property,
+    },
+    data() {
+        return {};
+    },
 };
 </script>
 <style lang="less" scoped>
 .right-property-bar {
-  background: rgba(255, 255, 255, 1);
-  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
-  box-sizing: border-box;
-  width: 240px;
-  height: calc(~"100% - 2px");
+    background: rgba(255, 255, 255, 1);
+    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
+    box-sizing: border-box;
+    width: 240px;
+    height: calc(~"100% - 2px");
 }
 </style>

+ 157 - 209
src/components/editview/topToolBar.vue

@@ -1,229 +1,177 @@
 <template>
-  <div id="topToolBar">
-    <div class="left">
-      <ul>
-        <li @click="topoUndo">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="撤销"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-chehui"></span>
-          </el-tooltip>
-        </li>
-        <li @click="topoRedo">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="重做"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-zhongzuo"></span>
-          </el-tooltip>
-        </li>
-        <li @click="copy">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="复制"
-            placement="bottom"
-          >
-            <span class="icon iconfont">&#xe673;</span>
-          </el-tooltip>
-        </li>
-        <li @click="paste">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="粘贴"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-niantie"></span>
-          </el-tooltip>
-        </li>
-        <li @click="deleteItem">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="删除"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-shanchu"></span>
-          </el-tooltip>
-        </li>
-        <li>
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="组合"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-zuhe"></span>
-          </el-tooltip>
-        </li>
-        <li>
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="打散"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-dasan"></span>
-          </el-tooltip>
-        </li>
-        <li @click="setOrder('Top')">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="置顶"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-zhiding"></span>
-          </el-tooltip>
-        </li>
-        <li @click="setOrder('Bottom')">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            content="置底"
-            placement="bottom"
-          >
-            <span class="icon iconfont icon-zhidi"></span>
-          </el-tooltip>
-        </li>
-        <li @click="setLock()">
-          <el-tooltip
-            class="item"
-            effect="dark"
-            :content="!isLock ? '解锁' : '锁定'"
-            placement="bottom"
-          >
-            <span
-              :class="[isLock ? 'el-icon-lock' : 'el-icon-unlock', 'lcoks']"
-            />
-          </el-tooltip>
-        </li>
-      </ul>
+    <div id="topToolBar">
+        <div class="left">
+            <ul>
+                <li @click="topoUndo">
+                    <el-tooltip class="item" effect="dark" content="撤销" placement="bottom">
+                        <span class="icon iconfont icon-chehui"></span>
+                    </el-tooltip>
+                </li>
+                <li @click="topoRedo">
+                    <el-tooltip class="item" effect="dark" content="重做" placement="bottom">
+                        <span class="icon iconfont icon-zhongzuo"></span>
+                    </el-tooltip>
+                </li>
+                <li @click="copy">
+                    <el-tooltip class="item" effect="dark" content="复制" placement="bottom">
+                        <span class="icon iconfont">&#xe673;</span>
+                    </el-tooltip>
+                </li>
+                <li @click="paste">
+                    <el-tooltip class="item" effect="dark" content="粘贴" placement="bottom">
+                        <span class="icon iconfont icon-niantie"></span>
+                    </el-tooltip>
+                </li>
+                <li @click="deleteItem">
+                    <el-tooltip class="item" effect="dark" content="删除" placement="bottom">
+                        <span class="icon iconfont icon-shanchu"></span>
+                    </el-tooltip>
+                </li>
+                <li>
+                    <el-tooltip class="item" effect="dark" content="组合" placement="bottom">
+                        <span class="icon iconfont icon-zuhe"></span>
+                    </el-tooltip>
+                </li>
+                <li>
+                    <el-tooltip class="item" effect="dark" content="打散" placement="bottom">
+                        <span class="icon iconfont icon-dasan"></span>
+                    </el-tooltip>
+                </li>
+                <li @click="setOrder('Top')">
+                    <el-tooltip class="item" effect="dark" content="置顶" placement="bottom">
+                        <span class="icon iconfont icon-zhiding"></span>
+                    </el-tooltip>
+                </li>
+                <li @click="setOrder('Bottom')">
+                    <el-tooltip class="item" effect="dark" content="置底" placement="bottom">
+                        <span class="icon iconfont icon-zhidi"></span>
+                    </el-tooltip>
+                </li>
+                <li @click="setLock()">
+                    <el-tooltip class="item" effect="dark" :content="!isLock ? '解锁' : '锁定'" placement="bottom">
+                        <span :class="[isLock ? 'el-icon-lock' : 'el-icon-unlock', 'lcoks']" />
+                    </el-tooltip>
+                </li>
+            </ul>
+        </div>
+        <div class="rght">
+            <!-- 待定 -->
+        </div>
     </div>
-    <div class="rght">
-      <!-- 待定 -->
-    </div>
-  </div>
 </template>
 <script>
 import bus from "@/bus/bus";
 export default {
-  data() {
-    return {
-      isLock: false,
-      itemList: null,
-    };
-  },
-  methods: {
-    //撤销
-    topoUndo() {
-      bus.$emit("topoUndo");
-    },
-    // 重做
-    topoRedo() {
-      bus.$emit("topoRedo");
-    },
-    // 删除item
-    deleteItem() {
-      bus.$emit("deleteItem");
-    },
-    // 复制
-    copy() {
-      bus.$emit("copy");
-    },
-    // 粘贴
-    paste() {
-      bus.$emit("paste");
+    data() {
+        return {
+            isLock: false,
+            itemList: null,
+        };
     },
-    setOrder(val) {
-      bus.$emit("setOrder", val);
+    methods: {
+        //撤销
+        topoUndo() {
+            bus.$emit("topoUndo");
+        },
+        // 重做
+        topoRedo() {
+            bus.$emit("topoRedo");
+        },
+        // 删除item
+        deleteItem() {
+            bus.$emit("deleteItem");
+        },
+        // 复制
+        copy() {
+            bus.$emit("copy");
+        },
+        // 粘贴
+        paste() {
+            bus.$emit("paste");
+        },
+        setOrder(val) {
+            bus.$emit("setOrder", val);
+        },
+        // 设置锁定
+        setLock() {
+            this.isLock = !this.isLock;
+            if (!this.itemList) return;
+            this.itemList.forEach((item) => {
+                item.moveable = this.isLock;
+            });
+        },
+        emitChoice(itemList) {
+            if (!itemList.length) {
+                this.isLock = false;
+                this.itemList = null;
+            } else {
+                this.isLock = itemList[0].moveable;
+                this.itemList = itemList;
+            }
+        },
     },
-    // 设置锁定
-    setLock() {
-      this.isLock = !this.isLock;
-      if (!this.itemList) return;
-      this.itemList.forEach((item) => {
-        item.moveable = this.isLock;
-      });
+    mounted() {
+        bus.$on("emitChoice", this.emitChoice);
+        bus.$on("tooltipLock", this.setLock);
     },
-    emitChoice(itemList) {
-      if (!itemList.length) {
-        this.isLock = false;
-        this.itemList = null;
-      } else {
-        this.isLock = itemList[0].moveable;
-        this.itemList = itemList;
-      }
-    },
-  },
-  mounted() {
-    bus.$on("emitChoice", this.emitChoice);
-    bus.$on("tooltipLock", this.setLock);
-  },
 };
 </script>
 <style lang="less">
 ul,
 li {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 #topToolBar {
-  width: 100%;
-  height: 48px;
-  background: rgba(255, 255, 255, 1);
-  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  padding: 0 24px 0 24px;
-  box-sizing: border-box;
-  border-bottom: 1px solid #e4e5e7;
-  .left {
-    ul {
-      display: flex;
-      li {
-        display: flex;
-        justify-content: center;
-        flex-direction: column;
-        /*width: 62px;*/
-        padding: 0 7px;
-        margin-left: 7px;
-        font-size: 12px;
-        align-items: center;
-        text-align: center;
-        cursor: pointer;
-        img {
-          width: 16px;
-          height: 16px;
-        }
-        .percentage {
-          display: inline-block;
-          width: 35px;
-          border-bottom: 1px solid #c3c7cb;
-          margin: 0 13px;
-          font-size: 14px;
-        }
-        .dropdown-flex {
-          display: flex;
-          align-items: center;
-          .down-icon {
-            margin-left: 12px;
-          }
-        }
-        .lcoks {
-          font-size: 16px;
-          margin: 6px 0 4px 0;
+    width: 100%;
+    height: 48px;
+    background: rgba(255, 255, 255, 1);
+    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    padding: 0 24px 0 24px;
+    box-sizing: border-box;
+    border-bottom: 1px solid #e4e5e7;
+    .left {
+        ul {
+            display: flex;
+            li {
+                display: flex;
+                justify-content: center;
+                flex-direction: column;
+                /*width: 62px;*/
+                padding: 0 7px;
+                margin-left: 7px;
+                font-size: 12px;
+                align-items: center;
+                text-align: center;
+                cursor: pointer;
+                img {
+                    width: 16px;
+                    height: 16px;
+                }
+                .percentage {
+                    display: inline-block;
+                    width: 35px;
+                    border-bottom: 1px solid #c3c7cb;
+                    margin: 0 13px;
+                    font-size: 14px;
+                }
+                .dropdown-flex {
+                    display: flex;
+                    align-items: center;
+                    .down-icon {
+                        margin-left: 12px;
+                    }
+                }
+                .lcoks {
+                    font-size: 16px;
+                    margin: 6px 0 4px 0;
+                }
+            }
         }
-      }
     }
-  }
 }
 </style>

+ 39 - 39
src/components/editview/topoEditer.vue

@@ -1,20 +1,20 @@
 <template>
-  <div class="topo-editer">
-    <div class="top-bar">
-      <topToolBar></topToolBar>
+    <div class="topo-editer">
+        <div class="top-bar">
+            <topToolBar></topToolBar>
+        </div>
+        <div class="contents">
+            <div class="left-bar">
+                <leftToolBar></leftToolBar>
+            </div>
+            <div class="base-topo-editer">
+                <baseTopoEditer></baseTopoEditer>
+            </div>
+            <div class="right-bar">
+                <rightPropertyBar></rightPropertyBar>
+            </div>
+        </div>
     </div>
-    <div class="contents">
-      <div class="left-bar">
-        <leftToolBar></leftToolBar>
-      </div>
-      <div class="base-topo-editer">
-        <baseTopoEditer></baseTopoEditer>
-      </div>
-      <div class="right-bar">
-        <rightPropertyBar></rightPropertyBar>
-      </div>
-    </div>
-  </div>
 </template>
 <script>
 import leftToolBar from "./leftToolBar";
@@ -22,36 +22,36 @@ import rightPropertyBar from "./rightPropertyBar";
 import baseTopoEditer from "./baseTopoEditer";
 import topToolBar from "./topToolBar";
 export default {
-  components: { leftToolBar, rightPropertyBar, topToolBar, baseTopoEditer },
-  data() {
-    return {
-      view: null,
-      scene: null,
-    };
-  },
+    components: { leftToolBar, rightPropertyBar, topToolBar, baseTopoEditer },
+    data() {
+        return {
+            view: null,
+            scene: null,
+        };
+    },
 };
 </script>
 <style lang="less">
 .topo-editer {
-  width: 100%;
-  height: 100%;
-  .top-bar {
-    width: 100%;
-    z-index: 99;
-  }
-  .contents {
     width: 100%;
-    height: calc(~"100% - 48px");
-    display: flex;
-    justify-content: flex-start;
-    .right-bar {
-      width: 240px;
-      height: 100%;
+    height: 100%;
+    .top-bar {
+        width: 100%;
+        z-index: 99;
     }
-    .base-topo-editer {
-      flex: 1;
-      height: 100%;
+    .contents {
+        width: 100%;
+        height: calc(~"100% - 48px");
+        display: flex;
+        justify-content: flex-start;
+        .right-bar {
+            width: 240px;
+            height: 100%;
+        }
+        .base-topo-editer {
+            flex: 1;
+            height: 100%;
+        }
     }
-  }
 }
 </style>

+ 152 - 0
src/lib/SPlanParser.ts

@@ -0,0 +1,152 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * ****/
+
+import { SParser } from "@persagy-web/big/lib";
+import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit";
+
+/**
+ * 平面图解析器
+ *
+ *  @author  张宇 <taohuzy@163.com>
+ */
+export class SPlanParser extends SParser {
+    /**图例节点 */
+    nodes: any = []; // 图例节点,所有与工程信息化相关的图例(图标类型与区域) // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
+    /**图例节点 */ markers: any = [];
+    /**  管线对象 */
+    relations: any = [];
+    constructor() {
+        super(new BigEditFactory());
+    }
+
+    /**
+     * 解析拓扑图绘制数据
+     *
+     * @param data    业务空间数据
+     */
+    parseData(data: ElementData): void {
+        // 生成遍历基本图例
+        if (data.markers && data.markers.length) {
+            data.markers.forEach((item) => {
+                this.addMarker(item);
+            });
+        }
+
+        // 生成遍历Node图例
+        if (data.nodes && data.nodes.length) {
+            data.nodes.forEach((item: any) => {
+                this.addNode(item);
+            });
+        }
+
+        // 生成遍历关系图例
+        if (data.relations && data.relations.length) {
+            data.relations.forEach((item: any) => {
+                this.addRelation(item);
+            });
+        }
+    }
+
+    /**
+     * 添加生成 mark 实例
+     *
+     * @param data Marker   图例类型数据
+     */
+    addMarker(data: Marker) {
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BaseLine":
+                    this.markers.push(this.factory.createBaseLineEdit(data));
+                    break;
+                case "BaseText":
+                    this.markers.push(this.factory.createBaseTextEdit(data));
+                    break;
+                case "BaseImage":
+                    this.markers.push(this.factory.createBaseImageEdit(data));
+                    break;
+                case "BaseExplain":
+                    this.markers.push(this.factory.createBaseExpainEdit(data));
+                    break;
+                case "BaseCircle":
+                    this.markers.push(this.factory.createBaseCircleEdit(data));
+                    break;
+                case "BaseArrow":
+                    this.markers.push(this.factory.createBaseArrow(data));
+                    break;
+                case "BaseRect":
+                    this.markers.push(this.factory.createBaseRectEdit(data));
+                    break;
+                case "BasePolygon":
+                    this.markers.push(this.factory.createBasePolygonEdit(data));
+                    break;
+                case "BaseArrowPolygon":
+                    this.markers.push(this.factory.createBasePolygonArrowEdit(data));
+            }
+        }
+    }
+
+    /**
+     * 添加生成 Node 实例
+     *
+     * @param data Legend   图例类型数据
+     */
+    addNode(data: Legend) {
+        let node = null;
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BaseEquipment":
+                    node = this.factory.createBaseEquipment(data);
+                    break;
+            }
+        }
+        if (node) {
+            this.nodes.push(node);
+        }
+
+        return node;
+    }
+
+    /**
+     * 添加生成 Re 实例
+     *
+     * @param data Legend   图例类型数据
+     */
+    addRelation(data: Relation) {
+        let relation = null;
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BasePipe":
+                    relation = this.factory.createBasePipe(data);
+                    break;
+            }
+        }
+
+        if (relation) {
+            this.relations.push(relation);
+        }
+
+        return relation;
+    }
+}

+ 332 - 0
src/lib/SPlanScene.ts

@@ -0,0 +1,332 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * ****/
+
+import { SBaseEditScene, SBasePipe, SBaseEquipment } from "@persagy-web/big-edit";
+import { SGraphEdit, SGraphPropertyCommand } from "@persagy-web/edit";
+import { SMouseEvent } from "@persagy-web/base/lib";
+import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
+import { SItemStatus } from "@persagy-web/big/lib/enums/SItemStatus";
+import { rgbaNum } from "@persagy-web/big-edit/lib/until";
+// 引入命令
+import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand";
+import { SColor, SFont, SArrowStyleType } from "@persagy-web/draw/lib";
+import { SPlanParser } from "./";
+
+/**
+ * 平面图场景类
+ *
+ *  @author  张宇 <taohuzy@163.com>
+ */
+export class SPlanScene extends SBaseEditScene {
+    /** 图例数据 */
+    legendObj: any = null;
+    constructor() {
+        super();
+        // 选择绑定选额item事件
+        this.selectContainer.connect("listChange", this, this.listChange);
+    }
+
+    /**
+     * 选中返回的选中 item 回调方法
+     *
+     * @param event   鼠标事件参数
+     */
+    listChange(list: any): void {
+        const itemList: any = [];
+        list.itemList.forEach((item: any) => {
+            if (item instanceof SGraphEdit && !(item instanceof SGraphSelectContainer)) {
+                itemList.push(item);
+            }
+        });
+
+        this.emitChoice(itemList);
+    }
+
+    /**
+     * 选中返回的选中 item 回调方法(用于场景的外部调用)
+     *
+     * @param list   选中的 item 数组
+     */
+    emitChoice(list: any) {}
+
+    /**
+     * 鼠标左键按下
+     *
+     * @param event   鼠标事件参数
+     */
+    onMouseDown(event: SMouseEvent): any {
+        this.vueOnMouseDown(event); //外部调用
+        if (this.grabItem) {
+            if (this.grabItem instanceof SBasePipe) {
+                this.setTipeEndanchor(event);
+                return true;
+            }
+
+            return this.grabItem.onMouseDown(event);
+        }
+
+        if (this.editCmd == "EditBaseLine") {
+            this.addPolyLineArrow(event);
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBasePolyLine") {
+            this.addPolyLine(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") {
+            this.addPolygonItem(event);
+            this.clearCmdStatus();
+        } 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.addPolygonArrow(event);
+            this.clearCmdStatus();
+        } else if (this.editCmd == "wantou" || this.editCmd == "santong" || this.editCmd == "sitong") {
+            this.addPipeUninTool(event, this.editCmd);
+            this.clearCmdStatus();
+        } else if (this.editCmd == "EditBasePipe") {
+            this.addBasePipe(event, this.legendObj);
+            this.clearCmdStatus();
+        } else if (this.editCmd == "") {
+            super.onMouseDown(event);
+        }
+    }
+
+    /**
+     * 鼠标右键事件
+     *
+     * @param   event   鼠标事件参数
+     * @returns 是否点击右键
+     */
+    onContextMenu(event: SMouseEvent): boolean {
+        if (!super.onContextMenu(event)) {
+            this.getItem(null, [event]);
+        }
+
+        return true;
+    }
+
+    /**
+     * 修改 item 样式,数据等方法
+     *
+     * @param styletype      string 修改样式类型
+     * @param changeStyle    更改样式数据
+     * @param itemList       ? SGraphEdit[] 如果不传入默认使用选择器中选中得item
+     */
+    updateStyle(styletype: string, changestyle: any, itemList?: SGraphEdit[]): void {
+        // 如果未传入需要修改样式的item,默认取选择器中的item
+        let List = null;
+        if (itemList && itemList.length) {
+            List = itemList;
+        } else {
+            List = this.selectContainer.itemList;
+        }
+
+        let styleValue: any;
+        if (styletype == "strokeColor" || styletype == "backgroundColor" || styletype == "fillColor") {
+            const colorlist = rgbaNum(changestyle);
+            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 == "begin" || styletype == "end") {
+            styleValue = SArrowStyleType[changestyle];
+        } else if (styletype == "font") {
+            styleValue = new SFont("sans-serif", changestyle);
+        } else {
+            styleValue = changestyle;
+        }
+
+        List.forEach((item: SGraphEdit, index: number) => {
+            if (item instanceof SGraphSelectContainer) {
+                return;
+            }
+            const oldMsg = item[styletype];
+            const newMsg = styleValue;
+            this.undoStack.push(new SGraphPropertyCommand(this, item, styletype, oldMsg, newMsg));
+            item[styletype] = styleValue;
+        });
+    }
+
+    /**
+     * 修改指定设备得信息点
+     *
+     * @param obj Object    信息点
+     */
+    changeEquipMsgPoint(obj: any): void {
+        const List = this.selectContainer.itemList.length ? this.selectContainer.itemList[0] : null;
+        if (List && List instanceof SBaseEquipment) {
+            List.setMsgPoint(obj);
+        }
+    }
+
+    /**
+     * item 创建完成后回调
+     *
+     * @param   event   鼠标事件参数
+     */
+    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);
+    }
+
+    /**
+     * 修改 cmdstatus 函数;常在在业务中调用
+     */
+    clearCmdStatus() {
+        //do something
+    }
+
+    /**
+     * 获取item (常用与场景外的调用F)
+     * @param  event     SMouseEvent 鼠标事件
+     * @param  item     SGraphEdit|null 返回item
+     *
+     */
+    getItem(item: SGraphEdit | null, event: SMouseEvent[]): void {
+        // do something
+    }
+
+    /**
+     * 获取item (常用与场景外的调用F)
+     * @param  event     SMouseEvent 鼠标事件
+     * @param  item      SGraphEdit|null 返回item
+     *
+     */
+    vueOnMouseDown(event: SMouseEvent) {
+        // do something
+    }
+
+    /**
+     * 设置 item 状态
+     */
+    setItemStatus() {
+        const List = this.selectContainer.itemList[0];
+        if (List && List instanceof SGraphEdit) {
+            if (List.status == SItemStatus.Normal) {
+                List.status = SItemStatus.Edit;
+                this.grabItem = List;
+            } else {
+                List.status = SItemStatus.Normal;
+                this.grabItem = null;
+            }
+        }
+    }
+
+    /**
+     * 获取item (常用与场景外的调用F)
+     *
+     * @params isAll    是否为全部item数据
+     * @return obj      返回保存的数据接口
+     */
+    save(isAll: boolean = true) {
+        if (!this.view) return;
+        const Marktype: string[] = [
+            "BasePolygon",
+            "BaseLine",
+            "BaseText",
+            "BaseExplain",
+            "BaseImage",
+            "BaseCircle",
+            "BaseArrow",
+            "BaseTriangle",
+            "BaseRect",
+            "BaseArrowPolygon",
+        ];
+        const NodeType: string[] = ["BaseEquipment"];
+        const RelationType: string[] = ["BasePipe"];
+        const markers: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
+        const nodes: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
+        const relations: any = []; /**图例节点 */ // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
+        let nodeList;
+        if (isAll) {
+            nodeList = this.root.children;
+        } else {
+            nodeList = this.selectContainer.itemList;
+        }
+
+        nodeList.forEach((item) => {
+            if (item instanceof SGraphEdit && !(item instanceof SGraphSelectContainer)) {
+                // 添加节点数据
+                if (item.data && Marktype.includes(item.data.properties.type)) {
+                    markers.push(item.toData());
+                }
+
+                if (item.legendData && NodeType.includes(item.legendData.properties.type)) {
+                    nodes.push(item.toData());
+                }
+
+                if (item.relationData && RelationType.includes(item.relationData.properties.type)) {
+                    relations.push(item.toData());
+                }
+            }
+        });
+
+        return {
+            markers,
+            nodes,
+            relations,
+        };
+    }
+
+    /**
+     * 粘贴
+     */
+    paste(): void {
+        const copyList = JSON.parse(JSON.stringify(this.copyString));
+        const parserData = new SPlanParser();
+        const graphItemList: SGraphEdit[] = [];
+        parserData.parseData(copyList);
+        parserData.markers.forEach((item: SGraphEdit) => {
+            item.selectable = true;
+            item.moveable = true;
+            if (this.view) {
+                item.pos.x += 10 / this.view.scale;
+                item.pos.y += 10 / this.view.scale;
+            }
+            this.addItem(item);
+            graphItemList.push(item);
+        });
+
+        this.addListCommand(graphItemList);
+        this.view ? this.view.update() : "";
+    }
+}

+ 45 - 0
src/lib/SPlanView.ts

@@ -0,0 +1,45 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * ****/
+
+import { SColor, SPainter } from "@persagy-web/draw/lib";
+import { SGraphView } from "@persagy-web/graph/lib";
+
+/**
+ * 平面图view
+ *
+ * @author  张宇 <taohuzy@163.com>
+ */
+export class SPlanView extends SGraphView {
+    /**
+     * 绘制场景背景
+     *
+     * @param painter     绘制对象
+     */
+    protected drawBackground(painter: SPainter): void {
+        painter.brush.color = SColor.White;
+        painter.pen.color = SColor.Transparent;
+        painter.drawRect(0, 0, this.width, this.height);
+    } // Function drawBackground()
+}

+ 4 - 0
src/lib/index.ts

@@ -0,0 +1,4 @@
+import { SPlanScene } from "./SPlanScene";
+import { SPlanParser } from "./SPlanParser";
+import { SPlanView } from "./SPlanView";
+export { SPlanParser, SPlanScene, SPlanView };