|
@@ -69,7 +69,19 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "projectId", "floorMap", "equipItemList", "buildingId", "floorId", "objExtInfo"]),
|
|
|
+ ...mapState([
|
|
|
+ "editCmd",
|
|
|
+ "legendObj",
|
|
|
+ "graphId",
|
|
|
+ "id",
|
|
|
+ "state",
|
|
|
+ "projectId",
|
|
|
+ "floorMap",
|
|
|
+ "equipItemMap",
|
|
|
+ "buildingId",
|
|
|
+ "floorId",
|
|
|
+ "objExtInfo",
|
|
|
+ ]),
|
|
|
},
|
|
|
mounted() {
|
|
|
// 获取 canvas 的宽高
|
|
@@ -377,6 +389,11 @@ export default {
|
|
|
// 拼接设备默认样式
|
|
|
res.content.style.defaultEquipStyle = this.defaultEquipStyle;
|
|
|
this.INITSTYLE(res.content.style);
|
|
|
+ } else {
|
|
|
+ const style = {
|
|
|
+ defaultEquipStyle: this.defaultEquipStyle
|
|
|
+ }
|
|
|
+ this.INITSTYLE(style);
|
|
|
}
|
|
|
|
|
|
// parse.nodes.forEach((item) => {
|
|
@@ -430,9 +447,9 @@ export default {
|
|
|
res.content.ruleList.forEach(async (rule) => {
|
|
|
if (rule.commond && rule.commond === "query") {
|
|
|
if (rule.returnType && rule.returnType === "equip") {
|
|
|
- const params = {...rule.params, buildingId: this.buildingId, floorId: this.floorId}
|
|
|
+ const params = { ...rule.params, buildingId: this.buildingId, floorId: this.floorId };
|
|
|
const res = await equipQuery(params);
|
|
|
- this.mergeEquipData(res.content);
|
|
|
+ if (res.result === "success") this.mergeEquipData(res.content);
|
|
|
} else if (rule.returnType && rule.returnType === "zone") {
|
|
|
setTimeout(() => {
|
|
|
console.error("请求空间数据");
|
|
@@ -454,33 +471,35 @@ export default {
|
|
|
// 解析设备数据
|
|
|
mergeEquipData(equipList) {
|
|
|
equipList.forEach((equip) => {
|
|
|
- if (!this.equipItemList[equip.id]) {
|
|
|
+ if (!this.equipItemMap[equip.id]) {
|
|
|
if (this.objExtInfo[equip.id]) {
|
|
|
- equip = {...this.objExtInfo[equip.id], ...equip}
|
|
|
+ equip = { ...this.objExtInfo[equip.id], ...equip };
|
|
|
}
|
|
|
- if (!equip.pos) { //如果未维护设备在图中的坐标
|
|
|
+ if (!equip.pos) {
|
|
|
+ //如果未维护设备在图中的坐标
|
|
|
if (equip.locationJson) {
|
|
|
// 判断设备是否维护BIM坐标
|
|
|
- equip.pos = equip.locationJson;
|
|
|
+ const { x, y, z } = equip.locationJson;
|
|
|
+ equip.pos = { x, y: -y, z };
|
|
|
} else {
|
|
|
// 否则显示默认坐标位置
|
|
|
equip.pos = { x: 0, y: 0, z: 0 };
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
const equipItem = new SPlanEquipment(null, equip);
|
|
|
equipItem.selectable = true;
|
|
|
equipItem.moveable = true;
|
|
|
equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
|
equipItem.connect("onContextMenu", this, this.scene.getItem);
|
|
|
- if (this.style[equip.id]) {
|
|
|
- Object.assign(equipItem, this.style[equip.id]);
|
|
|
- } else if (this.style[equip.classCode]) {
|
|
|
- Object.assign(equipItem, this.style[equip.calssCode]);
|
|
|
- } else {
|
|
|
- Object.assign(equipItem, this.style["defaultEquipStyle"]);
|
|
|
- }
|
|
|
+ // if (this.style[equip.id]) {
|
|
|
+ // Object.assign(equipItem, this.style[equip.id]);
|
|
|
+ // } else if (this.style[equip.classCode]) {
|
|
|
+ // Object.assign(equipItem, this.style[equip.calssCode]);
|
|
|
+ // } else {
|
|
|
+ // Object.assign(equipItem, this.style["defaultEquipStyle"]);
|
|
|
+ // }
|
|
|
this.scene.addItem(equipItem);
|
|
|
- this.equipItemList[equip.id] = equipItem;
|
|
|
+ this.ADDEQUIP(equipItem);
|
|
|
}
|
|
|
});
|
|
|
},
|