|
@@ -36,7 +36,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["editCmd", "legendObj", "graphId", "id"]),
|
|
|
+ ...mapState(["editCmd", "legendObj", "graphId", "id", "categoryId"]),
|
|
|
},
|
|
|
mounted() {
|
|
|
this.canvasWidth = this.$refs.baseTopo.offsetWidth;
|
|
@@ -67,6 +67,7 @@ export default {
|
|
|
"SETLEGENDOBJ",
|
|
|
"SETPROJECT",
|
|
|
"projectId",
|
|
|
+ "SETCATEGROY",
|
|
|
]),
|
|
|
// 恢复命令状态
|
|
|
clearCmdStatus() {
|
|
@@ -126,7 +127,7 @@ export default {
|
|
|
const obj = {
|
|
|
elements,
|
|
|
name: "1", // 名称
|
|
|
- categoryId: "1", // 图分类ID
|
|
|
+ categoryId: this.categoryId, // 图分类ID
|
|
|
projectId: this.projectId, // 项目ID
|
|
|
buildingId: "1", // 建筑ID
|
|
|
floorId: "1", // 楼层id
|
|
@@ -168,11 +169,14 @@ export default {
|
|
|
id: this.id,
|
|
|
};
|
|
|
readGroup(obj).then((res) => {
|
|
|
+ this.SETCATEGROY(res.content.categoryId);
|
|
|
const parse = new PTopoParser();
|
|
|
parse.parseData(res.content.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);
|
|
|
});
|
|
|
});
|