浏览代码

'地址参数添加'

zhangyu 4 年之前
父节点
当前提交
bd0de4e70c
共有 1 个文件被更改,包括 18 次插入6 次删除
  1. 18 6
      src/components/editview/basePlanEditer.vue

+ 18 - 6
src/components/editview/basePlanEditer.vue

@@ -76,6 +76,9 @@ export default {
         ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version", "equipItemList"]),
     },
     created() {
+        this.SETPROJECT(this.$route.query);
+        this.SETISPUB(this.$route.query.isPub);
+        this.categoryName = decodeURI(this.$route.query.categoryName);
         this.clearImg();
     },
     mounted() {
@@ -364,7 +367,9 @@ export default {
             // 保存设备位置信息
             if (res.content.elements && res.content.elements.objExtInfo && res.content.elements.objExtInfo.length) {
                 const equipos = {};
-                res.content.elements.objExtInfo.forEach(item => { equipos[item.id] = item });
+                res.content.elements.objExtInfo.forEach((item) => {
+                    equipos[item.id] = item;
+                });
                 this.INITEQUIPOS(equipos);
             }
 
@@ -451,14 +456,21 @@ export default {
                      * 如果未维护BIM坐标,默认显示在什么位置
                      * 如果未维护BIM坐标,连线原点在什么位置(可能要在item里面处理)
                      */
-                    if (this.equipos[item.id]) {// 判断设备是否维护位置信息
+                    if (this.equipos[item.id]) {
+                        // 判断设备是否维护位置信息
                         item.pos = this.equipos[item.id];
-                    } else if (item.bimLocation) {// 判断设备是否维护BIM坐标
+                    } else if (item.bimLocation) {
+                        // 判断设备是否维护BIM坐标
                         item.pos = item.bimLocation;
-                    } else {// 否则显示默认坐标位置
-                        item.pos = {x:0,y:0}
+                    } else {
+                        // 否则显示默认坐标位置
+                        item.pos = { x: 0, y: 0 };
                     }
-                    const equipItem = new SPlanEquipment(item)
+                    const equipItem = new SPlanEquipment(item);
+                    equipItem.selectable = true;
+                    equipItem.moveable = true;
+                    equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
+                    equipItem.connect("onContextMenu", this, this.scene.getItem);
                     if (this.style[item.id]) {
                         Object.assign(equipItem, this.style[item.id]);
                     } else if (this.style[item.classCode]) {