瀏覽代碼

feat: 平面图新增属性

YaolongHan 4 年之前
父節點
當前提交
f3afd0de33
共有 2 個文件被更改,包括 8 次插入21 次删除
  1. 4 7
      src/components/baseEditer.vue
  2. 4 14
      src/components/edit/top_toolbar.vue

+ 4 - 7
src/components/baseEditer.vue

@@ -49,12 +49,9 @@ export default {
       urlMsg: {},
       chiceItemList: [], //选中itemlist
       hasTypeList: [], // 当前类型下包含的typeid(提取)
-<<<<<<< HEAD
-      graphId:''
-=======
+      graphId:'',
       initScale: 1,  //加载好底图之后的,初始缩放比例
       changeScaleByClick: false,  //区分 滚轮,点击 事件改变的缩放比例
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
     };
   },
   mounted() {
@@ -186,7 +183,7 @@ export default {
             console.log("success");
             // 设置初始化缩放比例
             this.initScale = this.view.scale
-            bus.$emit('initScale', this.view.scale)
+            bus.$emit('initScale', this.view.scale);
           });
         } else {
           console.log("楼层不正确");
@@ -390,7 +387,7 @@ export default {
       /**
        * @name changeScale缩放底图
        * @param { Number } zoom 缩放比例
-       * 
+       *
        */
       // TODO: changeScale缩放底图
       bus.$on('changeScale', zoom => {
@@ -459,7 +456,7 @@ export default {
       },
       deep: true
     },
-    // 监听scale的变化 
+    // 监听scale的变化
     'view.scale': {
       handler(scale) {
 

+ 4 - 14
src/components/edit/top_toolbar.vue

@@ -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;
   }
 };