|
@@ -13,7 +13,7 @@
|
|
|
<script>
|
|
|
import { SFloorParser, getJsonz } from "@persagy-web/big";
|
|
|
import { SImageItem, SImageShowType } from "@persagy-web/graph";
|
|
|
-import { SPlanView, SPlanParser, SPlanScene } from "@/lib";
|
|
|
+import { SPlanView, SPlanParser, SPlanScene, SPlanEquipment } from "@/lib";
|
|
|
import { SBaseEquipment } from "@/components/editClass/big-edit";
|
|
|
import topoTooltip from "./topoTooltip.vue";
|
|
|
import { mapState, mapMutations } from "vuex";
|
|
@@ -25,16 +25,6 @@ import { publishGraph } from "@/api/home";
|
|
|
export default {
|
|
|
components: { topoTooltip },
|
|
|
props: {
|
|
|
- elements: {
|
|
|
- type: Object,
|
|
|
- default: () => {
|
|
|
- return {
|
|
|
- objExtInfo: [],
|
|
|
- markers: [],
|
|
|
- relations: []
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
// 1.底图颜色
|
|
|
baseMapStyle: {
|
|
|
type: Object,
|
|
@@ -83,7 +73,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version"]),
|
|
|
+ ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version", "equipItemList"]),
|
|
|
},
|
|
|
created() {
|
|
|
this.clearImg();
|
|
@@ -118,7 +108,20 @@ export default {
|
|
|
}, 120000);
|
|
|
},
|
|
|
methods: {
|
|
|
- ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ", "SETPROJECT", "SETCATEGROY", "SETISPUB", "ADDEQUIPITEM", "EDITEQUIPITEM", "SETVERSION"]),
|
|
|
+ ...mapMutations([
|
|
|
+ "SETCHOICELEHEND",
|
|
|
+ "SETLEGENDOBJ",
|
|
|
+ "SETPROJECT",
|
|
|
+ "SETCATEGROY",
|
|
|
+ "SETISPUB",
|
|
|
+ "ADDEQUIPITEM",
|
|
|
+ "EDITEQUIPITEM",
|
|
|
+ "SETVERSION",
|
|
|
+ "ADDEQUIP",
|
|
|
+ "DELETEQUIP",
|
|
|
+ "INITSTYLE",
|
|
|
+ "INITEQUIPOS",
|
|
|
+ ]),
|
|
|
|
|
|
// 清空画布
|
|
|
clearImg() {
|
|
@@ -137,9 +140,7 @@ export default {
|
|
|
// 获取压缩包数据并解压
|
|
|
this.getMapBlob();
|
|
|
// 读取底图
|
|
|
- // this.readtopoMsg();
|
|
|
- // 加载基本元素
|
|
|
- this.loadBasElements();
|
|
|
+ this.readtopoMsg();
|
|
|
},
|
|
|
// 请求获取地图的压缩包
|
|
|
getMapBlob() {
|
|
@@ -154,7 +155,7 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
- // 获取图片
|
|
|
+ // 获取图片
|
|
|
getImage(url) {
|
|
|
const imgItem = new SImageItem(null, url);
|
|
|
imgItem.showType = SImageShowType.AutoFit;
|
|
@@ -173,7 +174,7 @@ export default {
|
|
|
//是否显示空间
|
|
|
// t.visible = this.isSpaceSelectable;
|
|
|
//设置样式
|
|
|
- Object.assign(t, this.baseMapStyle.default)
|
|
|
+ Object.assign(t, this.baseMapStyle.default);
|
|
|
//是否展示名称
|
|
|
// t.showBaseName = true;
|
|
|
// 是否可选
|
|
@@ -346,7 +347,7 @@ export default {
|
|
|
},
|
|
|
// 读图成功回调
|
|
|
getDataSuc(res) {
|
|
|
- let anchorList = []; //保存锚点对象
|
|
|
+ // let anchorList = []; //保存锚点对象
|
|
|
if (res.result == "failure") return;
|
|
|
this.SETCATEGROY(res.content);
|
|
|
this.topoContent = res.content;
|
|
@@ -359,71 +360,118 @@ export default {
|
|
|
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 (res.content.elements && res.content.elements.objExtInfo && res.content.elements.objExtInfo.length) {
|
|
|
+ const equipos = {};
|
|
|
+ res.content.elements.objExtInfo.forEach(item => { equipos[item.id] = item });
|
|
|
+ this.INITEQUIPOS(equipos);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 保存样式信息
|
|
|
+ if (res.content.style) {
|
|
|
+ this.INITSTYLE(res.content.style);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 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);
|
|
|
+ // });
|
|
|
+
|
|
|
+ if (res.content.ruleList && res.content.ruleList.length) {
|
|
|
+ res.content.ruleList.forEach((rule) => {
|
|
|
+ if (rule.commond && rule.commond === "query") {
|
|
|
+ if (rule.returnType && rule.returnType === "equip") {
|
|
|
+ setTimeout(() => {
|
|
|
+ console.log("请求设备数据");
|
|
|
+ // this.mergeEquipData(res.content)
|
|
|
+ }, parseInt(Math.random() * 10 + 1, 10) * 100);
|
|
|
+ } else if (rule.returnType && rule.returnType === "zone") {
|
|
|
+ setTimeout(() => {
|
|
|
+ console.log("请求空间数据");
|
|
|
+ }, 1000);
|
|
|
+ } else if (rule.returnType && rule.returnType === "equipGroup") {
|
|
|
+ setTimeout(() => {
|
|
|
+ console.log("请求设备组数据");
|
|
|
+ }, 1000);
|
|
|
}
|
|
|
- });
|
|
|
- if (endAnc) {
|
|
|
- endAnc.isConnected = true;
|
|
|
- endAnc.parent?.connect("changePos", t, t.changePos);
|
|
|
- t.endAnchor = endAnc || null;
|
|
|
+ } else if (rule.commond && rule.commond === "delete") {
|
|
|
+ console.log("删除命令!!!", rule);
|
|
|
}
|
|
|
- }
|
|
|
- t.connect("finishCreated", this.scene, this.scene.finishCreated);
|
|
|
- t.connect("onContextMenu", this, this.scene.getItem);
|
|
|
- this.scene.addItem(t);
|
|
|
- });
|
|
|
+ });
|
|
|
+ }
|
|
|
},
|
|
|
-
|
|
|
- // 加载基本元素
|
|
|
- loadBasElements() {
|
|
|
- const parse = new SPlanParser();
|
|
|
- parse.parseData(this.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);
|
|
|
+ // 解析设备数据
|
|
|
+ mergeEquipData(equipList) {
|
|
|
+ equipList.forEach((item) => {
|
|
|
+ if (!this.equipItemList[item.id]) {
|
|
|
+ /**
|
|
|
+ * 如果未维护BIM坐标,默认显示在什么位置
|
|
|
+ * 如果未维护BIM坐标,连线原点在什么位置(可能要在item里面处理)
|
|
|
+ */
|
|
|
+ if (this.equipos[item.id]) {// 判断设备是否维护位置信息
|
|
|
+ item.pos = this.equipos[item.id];
|
|
|
+ } else if (item.bimLocation) {// 判断设备是否维护BIM坐标
|
|
|
+ item.pos = item.bimLocation;
|
|
|
+ } else {// 否则显示默认坐标位置
|
|
|
+ item.pos = {x:0,y:0}
|
|
|
+ }
|
|
|
+ const equipItem = new SPlanEquipment(item)
|
|
|
+ if (this.style[item.id]) {
|
|
|
+ Object.assign(equipItem, this.style[item.id]);
|
|
|
+ } else if (this.style[item.classCode]) {
|
|
|
+ Object.assign(equipItem, this.style[item.calssCode]);
|
|
|
+ } else {
|
|
|
+ Object.assign(equipItem, this.style["equipDefault"]);
|
|
|
+ }
|
|
|
+ this.scene.addItem(equipItem);
|
|
|
+ this.equipItemList[item.id] = equipItem;
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
// 生成快照并保存草稿
|
|
|
saveTopoDraft() {
|
|
|
const uuid = uuidv1();
|
|
@@ -584,7 +632,7 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
editCmd(val) {
|
|
|
- console.trace(val)
|
|
|
+ console.trace(val);
|
|
|
if (this.scene) {
|
|
|
// 设置当前编辑状态
|
|
|
this.scene.editCmd = val;
|
|
@@ -596,12 +644,6 @@ export default {
|
|
|
},
|
|
|
deep: true,
|
|
|
},
|
|
|
- elements:{
|
|
|
- handler(){
|
|
|
- this.loadBasElements()
|
|
|
- },
|
|
|
- deep: true
|
|
|
- }
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
clearInterval(this.autoSave);
|