|
@@ -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]) {
|