|
@@ -15,6 +15,7 @@
|
|
|
:height="canvasHeight"
|
|
|
tabindex="0"
|
|
|
></canvas>
|
|
|
+ <zoom @sacle="changeSize" :scale="viewScale" class="zoom"></zoom>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -25,6 +26,7 @@ import {
|
|
|
} from "@/components/editClass/persagy-edit";
|
|
|
import { SBaseEquipment } from "@/components/editClass/big-edit";
|
|
|
import topoTooltip from "./topoTooltip.vue";
|
|
|
+import zoom from "./zoom";
|
|
|
import { mapState, mapMutations } from "vuex";
|
|
|
import base64ToFile from "@/utils/base64ToFile";
|
|
|
import { v1 as uuidv1 } from "uuid";
|
|
@@ -50,7 +52,7 @@ const default_Eq = window.__systemConf.default_Eq;
|
|
|
// 联通方式图标
|
|
|
const uninType = window.__systemConf.uninType;
|
|
|
export default {
|
|
|
- components: { topoTooltip },
|
|
|
+ components: { topoTooltip, zoom },
|
|
|
data() {
|
|
|
return {
|
|
|
scene: null, //场景
|
|
@@ -62,6 +64,7 @@ export default {
|
|
|
topoContent: {}, // 读图后存储图所有数据
|
|
|
autoSave: null, // 自动保存定时器
|
|
|
isLock: false, //右键item是否锁定
|
|
|
+ viewScale: 0, //视图缩放比例
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -84,7 +87,9 @@ export default {
|
|
|
this.scene.uninType = uninType; //联通方式
|
|
|
this.view = new PTopoView("persagy_topo");
|
|
|
this.view.scene = this.scene;
|
|
|
+ this.view.vueOnMouseWheel = this.vueOnMouseWheel;
|
|
|
this.scene.clearCmdStatus = this.clearCmdStatus;
|
|
|
+ this.viewScale = this.view.scale;
|
|
|
// 初始化bus绑定事件
|
|
|
this.initBusEvent();
|
|
|
// 右键事件
|
|
@@ -520,23 +525,28 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- // //改变图标样式
|
|
|
- // changeCursor(val) {
|
|
|
- // if (val) {
|
|
|
- // switch (val) {
|
|
|
- // case "EditBaseLine":
|
|
|
- // this.view.originCursor = "cursor: url('./../../assets/images/leftImgs/pen.png'),auto";
|
|
|
- // break;
|
|
|
- // case "EditBasetext":
|
|
|
- // this.view.originCursor = "text";
|
|
|
- // break;
|
|
|
- // default:
|
|
|
- // this.view.originCursor = "";
|
|
|
- // }
|
|
|
- // } else {
|
|
|
- // this.view.originCursor = "";
|
|
|
- // }
|
|
|
- // },
|
|
|
+ // 图片缩小
|
|
|
+ changeSize(isbiger) {
|
|
|
+ if (isbiger) {
|
|
|
+ this.view.scaleByPoint(
|
|
|
+ (this.view.scale * 1.1) / this.view.scale,
|
|
|
+ this.canvasWidth / 2,
|
|
|
+ this.canvasHeight / 2
|
|
|
+ );
|
|
|
+ this.viewScale = this.view.scale;
|
|
|
+ } else {
|
|
|
+ this.view.scaleByPoint(
|
|
|
+ (this.view.scale * 0.9) / this.view.scale,
|
|
|
+ this.canvasWidth / 2,
|
|
|
+ this.canvasHeight / 2
|
|
|
+ );
|
|
|
+ this.viewScale = this.view.scale;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 滚轮滚动
|
|
|
+ vueOnMouseWheel(e) {
|
|
|
+ this.viewScale = this.view.scale;
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
editCmd(val) {
|
|
@@ -577,5 +587,11 @@ export default {
|
|
|
left: 0;
|
|
|
top: 20px;
|
|
|
}
|
|
|
+ .zoom {
|
|
|
+ font-size: 14px;
|
|
|
+ position: absolute;
|
|
|
+ right: 24px;
|
|
|
+ bottom: 22px;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|