|
@@ -13,7 +13,7 @@
|
|
|
<script>
|
|
|
import { SFloorParser, getJsonz } from "@persagy-web/big";
|
|
|
import { SImageItem, SImageShowType } from "@persagy-web/graph";
|
|
|
-import { SPlanView, SPlanParser, SPlanScene, SPlanEquipment } from "@/lib";
|
|
|
+import { SPlanView, SPlanParser, SPlanScene, SPlanDecorator, SPlanEquipment } from "@/lib";
|
|
|
import { SBaseEquipment } from "@/components/editClass/big-edit";
|
|
|
import topoTooltip from "./topoTooltip.vue";
|
|
|
import { mapState, mapMutations } from "vuex";
|
|
@@ -42,19 +42,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
required: false,
|
|
|
- },
|
|
|
- // 设备默认样式
|
|
|
- defaultEquipStyle: {
|
|
|
- type: Object,
|
|
|
- default: () => {
|
|
|
- return {
|
|
|
- color: "#1F2429",
|
|
|
- size: 12,
|
|
|
- url: "tognyong2020102700.svg",
|
|
|
- formula: "",
|
|
|
- };
|
|
|
- },
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -81,6 +69,7 @@ export default {
|
|
|
"buildingId",
|
|
|
"floorId",
|
|
|
"objExtInfo",
|
|
|
+ "styleMap",
|
|
|
]),
|
|
|
},
|
|
|
mounted() {
|
|
@@ -387,12 +376,9 @@ export default {
|
|
|
// 保存样式信息
|
|
|
if (res.content.style) {
|
|
|
// 拼接设备默认样式
|
|
|
- res.content.style.defaultEquipStyle = this.defaultEquipStyle;
|
|
|
this.INITSTYLE(res.content.style);
|
|
|
} else {
|
|
|
- const style = {
|
|
|
- defaultEquipStyle: this.defaultEquipStyle
|
|
|
- }
|
|
|
+ const style = {};
|
|
|
this.INITSTYLE(style);
|
|
|
}
|
|
|
|
|
@@ -491,13 +477,13 @@ export default {
|
|
|
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.styleMap[equip.id]) {
|
|
|
+ SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.id]);
|
|
|
+ } else if (this.styleMap[equip.classCode]) {
|
|
|
+ SPlanDecorator.equipDecorator(equipItem, this.styleMap[equip.calssCode]);
|
|
|
+ } else {
|
|
|
+ SPlanDecorator.equipDecorator(equipItem, this.styleMap["defaultEquipStyle"]);
|
|
|
+ }
|
|
|
this.scene.addItem(equipItem);
|
|
|
this.ADDEQUIP(equipItem);
|
|
|
}
|