|
@@ -1,13 +1,13 @@
|
|
|
<template>
|
|
|
- <div class="baseTopo" id="baseTopo" ref="baseTopo">
|
|
|
- <topoTooltip
|
|
|
+ <div class="basePlan" id="basePlan" ref="basePlan">
|
|
|
+ <planTooltip
|
|
|
v-show="showTooltip"
|
|
|
- class="topoTooltip-box"
|
|
|
- ref="topoTooltip"
|
|
|
+ class="planTooltip-box"
|
|
|
+ ref="planTooltip"
|
|
|
@closeTooltip="showTooltip = false"
|
|
|
:havItem="havItem"
|
|
|
:contextMenuItem="contextMenuItem"
|
|
|
- ></topoTooltip>
|
|
|
+ ></planTooltip>
|
|
|
<canvas style="border: none; outline: medium" id="persagy_plan" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -16,7 +16,7 @@ import { SFloorParser, getJsonz } from "@persagy-web/big";
|
|
|
import { SImageItem, SImageShowType } from "@persagy-web/graph";
|
|
|
import { SPlanView, SPlanParser, SPlanScene, SPlanDecorator, SPlanEquipment, SPlanZone } from "@/lib";
|
|
|
import { SGraphPropertyCommand } from "@persagy-web/edit";
|
|
|
-import topoTooltip from "./topoTooltip.vue";
|
|
|
+import planTooltip from "./planTooltip.vue";
|
|
|
import { mapState, mapMutations } from "vuex";
|
|
|
import base64ToFile from "@/utils/base64ToFile";
|
|
|
import { v1 as uuidv1 } from "uuid";
|
|
@@ -25,7 +25,7 @@ import { planerSave, planerRead, planerPublish } from "@/api/labsl";
|
|
|
import { equipQuery, spaceQuery } from "@/api/equipcomponent";
|
|
|
import { imgBaseUrl } from "@/api/imageservice";
|
|
|
export default {
|
|
|
- components: { topoTooltip },
|
|
|
+ components: { planTooltip },
|
|
|
data() {
|
|
|
return {
|
|
|
scene: null, //场景
|
|
@@ -74,8 +74,8 @@ export default {
|
|
|
mounted() {
|
|
|
window.vim = this;
|
|
|
// 获取 canvas 的宽高
|
|
|
- this.canvasWidth = this.$refs.baseTopo.offsetWidth;
|
|
|
- this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
|
|
|
+ this.canvasWidth = this.$refs.basePlan.offsetWidth;
|
|
|
+ this.canvasHeight = this.$refs.basePlan.offsetHeight - 10;
|
|
|
// 初始化场景类
|
|
|
this.view = new SPlanView("persagy_plan");
|
|
|
if (this.scene) this.view.scene = this.scene;
|
|
@@ -92,13 +92,13 @@ export default {
|
|
|
this.scene.vueOnMouseDown = this.vueOnMouseDown;
|
|
|
|
|
|
// 屏蔽浏览器右键功能(防止与编辑器右键交互重合)
|
|
|
- document.getElementById("baseTopo").oncontextmenu = function (e) {
|
|
|
+ document.getElementById("basePlan").oncontextmenu = function (e) {
|
|
|
return false;
|
|
|
};
|
|
|
|
|
|
// 2分钟自动保存
|
|
|
this.autoSave = setInterval(() => {
|
|
|
- this.autoSaveTopo();
|
|
|
+ this.autoSavePlan();
|
|
|
}, 120000);
|
|
|
},
|
|
|
methods: {
|
|
@@ -238,7 +238,7 @@ export default {
|
|
|
this.havItem = false;
|
|
|
this.contextMenuItem = null;
|
|
|
}
|
|
|
- const doms = document.getElementsByClassName("topoTooltip-box")[0];
|
|
|
+ const doms = document.getElementsByClassName("planTooltip-box")[0];
|
|
|
doms.style.left = event.offsetX + "px";
|
|
|
doms.style.top = event.offsetY + "px";
|
|
|
},
|
|
@@ -264,13 +264,13 @@ export default {
|
|
|
this.scene.updateStyle(type, val);
|
|
|
});
|
|
|
// 撤销
|
|
|
- bus.$off("topoUndo");
|
|
|
- bus.$on("topoUndo", (val) => {
|
|
|
+ bus.$off("planUndo");
|
|
|
+ bus.$on("planUndo", (val) => {
|
|
|
this.scene.undo();
|
|
|
});
|
|
|
// 重做
|
|
|
- bus.$off("topoRedo");
|
|
|
- bus.$on("topoRedo", (val) => {
|
|
|
+ bus.$off("planRedo");
|
|
|
+ bus.$on("planRedo", (val) => {
|
|
|
this.scene.redo();
|
|
|
});
|
|
|
// 删除
|
|
@@ -290,9 +290,9 @@ export default {
|
|
|
this.scene.paste();
|
|
|
});
|
|
|
// 保存
|
|
|
- bus.$off("saveTopo");
|
|
|
- bus.$on("saveTopo", (val) => {
|
|
|
- this.saveTopoDraft();
|
|
|
+ bus.$off("savePlan");
|
|
|
+ bus.$on("savePlan", (val) => {
|
|
|
+ this.savePlanDraft();
|
|
|
});
|
|
|
// 设置实例置顶置底
|
|
|
bus.$off("setOrder");
|
|
@@ -305,16 +305,16 @@ export default {
|
|
|
this.scene.setItemStatus();
|
|
|
});
|
|
|
// 下载图片
|
|
|
- bus.$off("saveTopoImg");
|
|
|
- bus.$on("saveTopoImg", () => {
|
|
|
+ bus.$off("savePlanImg");
|
|
|
+ bus.$on("savePlanImg", () => {
|
|
|
// 隐藏选择器
|
|
|
this.scene.selectContainer.clear();
|
|
|
this.view.saveImageSize(`${this.planContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
|
|
|
});
|
|
|
// 发布图片
|
|
|
- bus.$off("issueTopo");
|
|
|
- bus.$on("issueTopo", () => {
|
|
|
- this.saveTopoDraft().then(() => {
|
|
|
+ bus.$off("issuePlan");
|
|
|
+ bus.$on("issuePlan", () => {
|
|
|
+ this.savePlanDraft().then(() => {
|
|
|
this.issueDraft();
|
|
|
});
|
|
|
});
|
|
@@ -548,7 +548,7 @@ export default {
|
|
|
bus.$emit("initScale", this.view.scale);
|
|
|
},
|
|
|
// 生成快照并保存草稿
|
|
|
- saveTopoDraft() {
|
|
|
+ savePlanDraft() {
|
|
|
const uuid = uuidv1();
|
|
|
return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)])
|
|
|
.then((vals) => {
|
|
@@ -651,9 +651,9 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
// 自动保存
|
|
|
- autoSaveTopo() {
|
|
|
+ autoSavePlan() {
|
|
|
if (this.scene && this.scene.undoStack.isChange) {
|
|
|
- this.saveTopoDraft().then(() => {
|
|
|
+ this.savePlanDraft().then(() => {
|
|
|
this.scene.undoStack.isChange = false;
|
|
|
});
|
|
|
}
|
|
@@ -709,11 +709,11 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
-.baseTopo {
|
|
|
+.basePlan {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
- .topoTooltip-box {
|
|
|
+ .planTooltip-box {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
top: 0;
|