|
@@ -129,7 +129,7 @@ export default {
|
|
|
scale: 0.5, //底图缩放比例
|
|
|
initScale: 0.5, //初始 底图缩放比例
|
|
|
baseScale: 1.0, //底图基础缩放比例,由底图加载完成后,传入进来
|
|
|
- scaleStep: 0.05, // +-缩放步进
|
|
|
+ scaleStep: 0.05, // +-缩放步进
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -153,13 +153,13 @@ export default {
|
|
|
* @description 滚轮滚动,导致的底图缩放比例 逻辑处理
|
|
|
*/
|
|
|
getMouseScale() {
|
|
|
- // zoom 为缩放后改变的比例
|
|
|
+ // zoom 为缩放后改变的比例
|
|
|
bus.$on('mouseScale', zoom => {
|
|
|
this.scale = Number((zoom * this.initScale).toFixed(2))
|
|
|
})
|
|
|
},
|
|
|
/**
|
|
|
- * @name handleScale
|
|
|
+ * @name handleScale
|
|
|
* @param { Number } type -1:点击 - 缩小底图; 1:点击 + 放大底图
|
|
|
* @description 点击 -+ 缩放底图
|
|
|
*/
|
|
@@ -176,7 +176,7 @@ export default {
|
|
|
return false
|
|
|
}
|
|
|
// emit 缩放比例 this.scale / oldScale
|
|
|
- let oldScale = this.scale
|
|
|
+ const oldScale = this.scale
|
|
|
this.scale = Number((oldScale + type * this.scaleStep).toFixed(2))
|
|
|
bus.$emit('changeScale', this.scale / oldScale)
|
|
|
},
|
|
@@ -224,16 +224,10 @@ export default {
|
|
|
console.log("itemMsg", itemMsg);
|
|
|
this.FocusItemChanged(itemMsg);
|
|
|
});
|
|
|
-<<<<<<< HEAD
|
|
|
- bus.$on("setGraphId", setGraphId => {
|
|
|
- console.log("itemMsg", setGraphId);
|
|
|
- });
|
|
|
-=======
|
|
|
// 获取底图加载完成后的初始sacle
|
|
|
await this.getInitScale()
|
|
|
// 监听滚轮 底图缩放比例
|
|
|
this.getMouseScale()
|
|
|
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
|
|
|
},
|
|
|
created() {
|
|
|
const href = window.location.href;
|
|
@@ -255,12 +249,8 @@ export default {
|
|
|
obj[arr[0]] = arr[1];
|
|
|
});
|
|
|
this.urlMsg = obj;
|
|
|
-<<<<<<< HEAD
|
|
|
- const FloorName = this.urlMsg.FloorName ? this.urlMsg.FloorName:'';
|
|
|
-=======
|
|
|
// ///////////测试代码
|
|
|
const FloorName = this.urlMsg.FloorName ? this.urlMsg.FloorName : '';
|
|
|
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
|
|
|
this.urlMsg.floorName = systym[this.urlMsg.categoryId] + '-' + FloorName;
|
|
|
}
|
|
|
};
|