|
@@ -35,7 +35,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(["editCmd", "legendObj"]),
|
|
|
+ ...mapState(["editCmd", "legendObj", "graphId", "id"]),
|
|
|
},
|
|
|
mounted() {
|
|
|
this.canvasWidth = this.$refs.baseTopo.offsetWidth;
|
|
@@ -61,7 +61,12 @@ export default {
|
|
|
// this.readMapmsg();
|
|
|
},
|
|
|
methods: {
|
|
|
- ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
|
|
|
+ ...mapMutations([
|
|
|
+ "SETCHOICELEHEND",
|
|
|
+ "SETLEGENDOBJ",
|
|
|
+ "SETPROJECT",
|
|
|
+ "projectId",
|
|
|
+ ]),
|
|
|
// 恢复命令状态
|
|
|
clearCmdStatus() {
|
|
|
this.SETCHOICELEHEND("");
|
|
@@ -120,10 +125,10 @@ export default {
|
|
|
const obj = {
|
|
|
elements,
|
|
|
name: "1", // 名称
|
|
|
- categoryID: "1", // 图分类ID
|
|
|
- projectID: "1", // 项目ID
|
|
|
- buildingID: "1", // 建筑ID
|
|
|
- floorID: "1", // 楼层id
|
|
|
+ categoryId: "1", // 图分类ID
|
|
|
+ projectId: this.projectId, // 项目ID
|
|
|
+ buildingId: "1", // 建筑ID
|
|
|
+ floorId: "1", // 楼层id
|
|
|
note: "1", // 图说明
|
|
|
log: {
|
|
|
// 图操作日志
|
|
@@ -138,8 +143,8 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
Object.assign(obj, {
|
|
|
- graphId: "cd8ca79c337644d48c58c447cf21b757",
|
|
|
- id: "f15506fa5dcc4ce79064e459e5497748",
|
|
|
+ graphId: this.graphId,
|
|
|
+ id: this.id,
|
|
|
});
|
|
|
console.log(obj);
|
|
|
saveGroup(obj).then((res) => {
|
|
@@ -154,8 +159,8 @@ export default {
|
|
|
// 读取拓扑图
|
|
|
readtopoMsg() {
|
|
|
let obj = {
|
|
|
- graphId: "cd8ca79c337644d48c58c447cf21b757",
|
|
|
- id: "f15506fa5dcc4ce79064e459e5497748",
|
|
|
+ graphId: this.graphId,
|
|
|
+ id: this.id,
|
|
|
};
|
|
|
readGroup(obj).then((res) => {
|
|
|
const parse = new PTopoParser();
|
|
@@ -195,6 +200,9 @@ export default {
|
|
|
deep: true,
|
|
|
},
|
|
|
},
|
|
|
+ created() {
|
|
|
+ this.SETPROJECT(this.$route.query);
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|