|
@@ -20,8 +20,10 @@ import { mapState, mapMutations } from "vuex";
|
|
|
import base64ToFile from "@/utils/base64ToFile";
|
|
|
import { v1 as uuidv1 } from "uuid";
|
|
|
import bus from "@/bus/bus";
|
|
|
-import { saveGroup, readGroup, uploadGroup, getImageGroup, readPubGroup } from "@/api/editer";
|
|
|
+import { saveGroup } from "@/api/editer";
|
|
|
import { publishGraph } from "@/api/home";
|
|
|
+import { planerSave, planerRead, pubPlanerRead } from "@/api/labsl";
|
|
|
+import { equipQuery } from "@/api/equipcomponent";
|
|
|
import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
|
|
|
export default {
|
|
|
components: { topoTooltip },
|
|
@@ -62,16 +64,12 @@ export default {
|
|
|
canvasHeight: 700, //画布高
|
|
|
havItem: false, //右击是否选中item
|
|
|
showTooltip: false, //是否显示tooltip
|
|
|
- topoContent: {}, // 读图后存储图所有数据
|
|
|
+ planContent: {}, // 读图后存储图所有数据
|
|
|
autoSave: null, // 自动保存定时器
|
|
|
- floorMap: "base/ebd53bb00d3511eb9a1db95f725712e8.jsonz",
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "categoryId", "projectId", "version", "equipItemList"]),
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.clearImg();
|
|
|
+ ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "projectId", "floorMap", "equipItemList", "buildingId", "floorId", "objExtInfo"]),
|
|
|
},
|
|
|
mounted() {
|
|
|
// 获取 canvas 的宽高
|
|
@@ -115,7 +113,7 @@ export default {
|
|
|
"ADDEQUIP",
|
|
|
"DELETEQUIP",
|
|
|
"INITSTYLE",
|
|
|
- "INITEQUIPOS",
|
|
|
+ "INITOBJEXTINFO",
|
|
|
]),
|
|
|
|
|
|
// 清空画布
|
|
@@ -133,10 +131,10 @@ export default {
|
|
|
init() {
|
|
|
this.clearImg();
|
|
|
this.view ? (this.view.scene = this.scene) : null;
|
|
|
- // 获取压缩包数据并解压
|
|
|
- this.getMapBlob();
|
|
|
- // 读取底图
|
|
|
- this.readtopoMsg();
|
|
|
+ // 判断是否有楼层底图,有则获取数据并解析
|
|
|
+ if (this.floorMap) this.getMapBlob();
|
|
|
+ // 读取平面图数据
|
|
|
+ this.readPlanMsg();
|
|
|
},
|
|
|
// 请求获取地图的压缩包
|
|
|
getMapBlob() {
|
|
@@ -299,7 +297,7 @@ export default {
|
|
|
bus.$on("saveTopoImg", () => {
|
|
|
// 隐藏选择器
|
|
|
this.scene.selectContainer.clear();
|
|
|
- this.view.saveImageSize(`${this.topoContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
|
|
|
+ this.view.saveImageSize(`${this.planContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
|
|
|
});
|
|
|
// 发布图片
|
|
|
bus.$off("issueTopo");
|
|
@@ -325,18 +323,18 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
// 读取拓扑图
|
|
|
- readtopoMsg() {
|
|
|
+ readPlanMsg() {
|
|
|
const obj = {
|
|
|
graphId: this.graphId,
|
|
|
id: this.id,
|
|
|
};
|
|
|
if (this.state === "Publish") {
|
|
|
// 已发布
|
|
|
- readPubGroup(obj).then((res) => {
|
|
|
+ pubPlanerRead(obj).then((res) => {
|
|
|
this.getDataSuc(res);
|
|
|
});
|
|
|
} else {
|
|
|
- readGroup(obj).then((res) => {
|
|
|
+ planerRead(obj).then((res) => {
|
|
|
this.getDataSuc(res);
|
|
|
});
|
|
|
}
|
|
@@ -346,7 +344,7 @@ export default {
|
|
|
// let anchorList = []; //保存锚点对象
|
|
|
if (res.result == "failure") return;
|
|
|
this.SETCATEGROY(res.content);
|
|
|
- this.topoContent = res.content;
|
|
|
+ this.planContent = res.content;
|
|
|
const parse = new SPlanParser();
|
|
|
parse.parseData(res.content.elements);
|
|
|
parse.markers.forEach((item) => {
|
|
@@ -356,7 +354,7 @@ export default {
|
|
|
item.connect("onContextMenu", this, this.scene.getItem);
|
|
|
// 判断如果是图,需要拼接路径
|
|
|
if (item.data.properties.type == "BaseImage") {
|
|
|
- if (item.data.style.default.url) {
|
|
|
+ if (item.data.style?.default?.url) {
|
|
|
item.url = imgBaseUrl + item.data.style.default.url;
|
|
|
}
|
|
|
}
|
|
@@ -364,16 +362,20 @@ 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;
|
|
|
- });
|
|
|
- this.INITEQUIPOS(equipos);
|
|
|
+ if (res.content.elements.objExtInfo?.length) {
|
|
|
+ const objExtInfo = {};
|
|
|
+ if (res.content.elements.objExtInfo?.length) {
|
|
|
+ res.content.elements.objExtInfo.forEach((item) => {
|
|
|
+ objExtInfo[item.id] = item;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.INITOBJEXTINFO(objExtInfo);
|
|
|
}
|
|
|
|
|
|
// 保存样式信息
|
|
|
if (res.content.style) {
|
|
|
+ // 拼接设备默认样式
|
|
|
+ res.content.style.defaultEquipStyle = this.defaultEquipStyle;
|
|
|
this.INITSTYLE(res.content.style);
|
|
|
}
|
|
|
|
|
@@ -424,25 +426,27 @@ export default {
|
|
|
// this.scene.addItem(t);
|
|
|
// });
|
|
|
|
|
|
- if (res.content.ruleList && res.content.ruleList.length) {
|
|
|
- res.content.ruleList.forEach((rule) => {
|
|
|
+ if (res.content.ruleList?.length) {
|
|
|
+ res.content.ruleList.forEach(async (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);
|
|
|
+ const params = {...rule.params, buildingId: this.buildingId, floorId: this.floorId}
|
|
|
+ const res = await equipQuery(params);
|
|
|
+ this.mergeEquipData(res.content);
|
|
|
} else if (rule.returnType && rule.returnType === "zone") {
|
|
|
setTimeout(() => {
|
|
|
- console.log("请求空间数据");
|
|
|
+ console.error("请求空间数据");
|
|
|
}, 1000);
|
|
|
} else if (rule.returnType && rule.returnType === "equipGroup") {
|
|
|
setTimeout(() => {
|
|
|
- console.log("请求设备组数据");
|
|
|
+ console.error("请求设备组数据");
|
|
|
}, 1000);
|
|
|
}
|
|
|
} else if (rule.commond && rule.commond === "delete") {
|
|
|
- console.log("删除命令!!!", rule);
|
|
|
+ /**
|
|
|
+ * 暂未实现
|
|
|
+ */
|
|
|
+ console.error("删除命令!!!", rule);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -451,20 +455,18 @@ export default {
|
|
|
mergeEquipData(equipList) {
|
|
|
equipList.forEach((equip) => {
|
|
|
if (!this.equipItemList[equip.id]) {
|
|
|
- /**
|
|
|
- * 如果未维护BIM坐标,默认显示在什么位置
|
|
|
- * 如果未维护BIM坐标,连线原点在什么位置(可能要在item里面处理)
|
|
|
- */
|
|
|
- if (this.equipos[equip.id]) {
|
|
|
- // 判断设备是否维护位置信息
|
|
|
- equip.pos = this.equipos[equip.id];
|
|
|
- } else if (equip.locationJson) {
|
|
|
- // 判断设备是否维护BIM坐标
|
|
|
- equip.pos = equip.locationJson;
|
|
|
- } else {
|
|
|
- // 否则显示默认坐标位置
|
|
|
- equip.pos = { x: 0, y: 0, z: 0 };
|
|
|
+ if (this.objExtInfo[equip.id]) {
|
|
|
+ equip = {...this.objExtInfo[equip.id], ...equip}
|
|
|
}
|
|
|
+ if (!equip.pos) { //如果未维护设备在图中的坐标
|
|
|
+ if (equip.locationJson) {
|
|
|
+ // 判断设备是否维护BIM坐标
|
|
|
+ equip.pos = equip.locationJson;
|
|
|
+ } else {
|
|
|
+ // 否则显示默认坐标位置
|
|
|
+ equip.pos = { x: 0, y: 0, z: 0 };
|
|
|
+ }
|
|
|
+ }
|
|
|
const equipItem = new SPlanEquipment(null, equip);
|
|
|
equipItem.selectable = true;
|
|
|
equipItem.moveable = true;
|
|
@@ -475,7 +477,7 @@ export default {
|
|
|
} else if (this.style[equip.classCode]) {
|
|
|
Object.assign(equipItem, this.style[equip.calssCode]);
|
|
|
} else {
|
|
|
- Object.assign(equipItem, this.style["equipDefault"]);
|
|
|
+ Object.assign(equipItem, this.style["defaultEquipStyle"]);
|
|
|
}
|
|
|
this.scene.addItem(equipItem);
|
|
|
this.equipItemList[equip.id] = equipItem;
|
|
@@ -536,10 +538,10 @@ export default {
|
|
|
const elements = this.scene.save();
|
|
|
const obj = {
|
|
|
elements,
|
|
|
- // name: this.topoContent.name, // 名称
|
|
|
+ // name: this.planContent.name, // 名称
|
|
|
// categoryId: this.categoryId, // 图分类ID
|
|
|
// projectId: this.projectId, // 项目ID
|
|
|
- // label: this.topoContent.label,
|
|
|
+ // label: this.planContent.label,
|
|
|
// buildingId: "1", // 建筑ID
|
|
|
// floorId: "1", // 楼层id
|
|
|
// note: "1", // 图说明
|