Parcourir la source

modify new canvas

haojianlong il y a 5 ans
Parent
commit
f340ef81a6

+ 2 - 2
package.json

@@ -21,8 +21,8 @@
         "vue-router": "^3.0.1",
         "vuex": "^3.1.0",
         "@sybotan-web/base": "2.0.51",
-        "@sybotan-web/draw": "2.0.105",
-        "@sybotan-web/graphy": "2.0.82"
+        "@sybotan-web/draw": "2.0.106",
+        "@sybotan-web/graphy": "2.0.83"
     },
     "devDependencies": {
         "ajv": "^6.9.1",

+ 3 - 3
src/assets/graphy/SGraphy/dataType.ts

@@ -69,8 +69,8 @@ interface ImgItemInterface {
     Y: number;
     width: number;
     height: number;
-    url: string;
-    id: string;
-    downUrl?: string;
+    img: string;
+    id?: string;
+    name: string;
 }
 export { dataItemPath, dataItem, dataSpaceItem, dataInterface, businessDataInterface, PolygonItemInterface, ImgItemInterface }

+ 1 - 1
src/assets/graphy/SGraphy/mainScene.js

@@ -143,7 +143,7 @@ var mainScene = /** @class */ (function (_super) {
         var _this_1 = this;
         if (images && images.length) {
             images.map(function (t) {
-                _this_1.addItem(new SGraphyImgItem(null, t.X, t.Y, 2000, 2000, '', ''));
+                _this_1.addItem(new SGraphyImgItem(null, t.img, t.X, t.Y, t.width, t.height));
             });
         }
     };

+ 1 - 1
src/assets/graphy/SGraphy/mainScene.ts

@@ -131,7 +131,7 @@ export default class mainScene extends SGraphyScene {
     addImgList(images: ImgItemInterface[]): void {
         if (images && images.length) {
             images.map(t => {
-                this.addItem(new SGraphyImgItem(null, t.X, t.Y, 2000, 2000, '', ''))
+                this.addItem(new SGraphyImgItem(null, t.img, t.X, t.Y, t.width, t.height))
             })
         }
     }

+ 21 - 26
src/assets/graphy/SGraphy/newItems/SGraphyImgItem.js

@@ -13,7 +13,6 @@ var __extends = (this && this.__extends) || (function () {
 })();
 import { SGraphyItem } from '@sybotan-web/graphy';
 import { SRect } from "@sybotan-web/base";
-import { SColor } from "@sybotan-web/draw";
 /**
  * 图形Item类  todo
  *
@@ -23,28 +22,24 @@ var SGraphyImgItem = /** @class */ (function (_super) {
     /**
      * 构造函数
      *
-     * @param width    图片宽度
-     * @param height   图片高度
-     * @param url      图片url
-     * @param id       point的Id
-     * @param X        图片向x轴的偏移量
-     * @param Y        图片向y轴的偏移量
-     * @param downUrl  图片按下时的url
-     * @param parent   指向父元素
+     * @param width        		图片宽度
+     * @param height   				图片高度
+     * @param imgSource     	图片源
+     * @param X        				图片向x轴的偏移量
+     * @param Y        				图片向y轴的偏移量
+     * @param parent   				指向父元素
      */
-    function SGraphyImgItem(parent, X, Y, width, height, url, id, downUrl) {
-        if (downUrl === void 0) { downUrl = ''; }
+    function SGraphyImgItem(parent, imgSource, X, Y, width, height) {
         var _this = _super.call(this, parent) || this;
         _this.width = 0;
         _this.height = 0;
-        _this.url = '';
-        _this.width = width;
-        _this.height = height;
-        _this.url = url;
-        _this.id = id;
+        _this.imgSource = imgSource;
         _this.X = X;
         _this.Y = Y;
-        _this.downUrl = downUrl;
+        _this.width = width;
+        _this.height = height;
+        _this.img = new Image();
+        _this.img.src = _this.imgSource;
         return _this;
     } // Constructor()
     /**
@@ -55,8 +50,11 @@ var SGraphyImgItem = /** @class */ (function (_super) {
     SGraphyImgItem.prototype.boundingRect = function () {
         return new SRect(this.X, this.Y, this.width, this.height);
     }; // Function boundingRect()
+    // contains(x: number, y: number): boolean {
+    // 	return this.boundingRect().contains(x - this.X, y - this.Y);
+    // }
     SGraphyImgItem.prototype.onClick = function (event) {
-        this.$emit('click', { item: this, event: event });
+        this.$emit('click', event);
         return true;
     }; // Function onClick()
     /**
@@ -66,7 +64,7 @@ var SGraphyImgItem = /** @class */ (function (_super) {
   * @return  boolean
   */
     SGraphyImgItem.prototype.onDoubleClick = function (event) {
-        this.$emit('doubleClick', { item: this, event: event });
+        this.$emit('doubleClick', event);
         return true;
     };
     /**
@@ -76,7 +74,7 @@ var SGraphyImgItem = /** @class */ (function (_super) {
   * @return  boolean
   */
     SGraphyImgItem.prototype.onMouseDown = function (event) {
-        this.$emit('mouseDown', { item: this, event: event });
+        this.$emit('mouseDown', event);
         return true;
     }; // Function onMouseDown()
     /**
@@ -86,7 +84,7 @@ var SGraphyImgItem = /** @class */ (function (_super) {
      * @return  boolean
      */
     SGraphyImgItem.prototype.onMouseMove = function (event) {
-        this.$emit('mouseMove', { item: this, event: event });
+        this.$emit('mouseMove', event);
         return true;
     }; // Function onMouseMove()
     /**
@@ -96,7 +94,7 @@ var SGraphyImgItem = /** @class */ (function (_super) {
      * @return  boolean
      */
     SGraphyImgItem.prototype.onMouseUp = function (event) {
-        this.$emit('mouseUp', { item: this, event: event });
+        this.$emit('mouseUp', event);
         return true;
     };
     /**
@@ -106,10 +104,7 @@ var SGraphyImgItem = /** @class */ (function (_super) {
      * @param   rect          绘制区域
      */
     SGraphyImgItem.prototype.onDraw = function (painter, rect) {
-        painter.pen.color = new SColor('#409EFF');
-        painter.brush.color = new SColor('#409EFF');
-        painter.pen.lineWidth = 100;
-        painter.drawCircle(this.X + this.width / 2, this.Y + this.height / 2, this.width / 2);
+        painter.drawImage(this.img, this.X, this.Y, this.width, this.height);
     };
     return SGraphyImgItem;
 }(SGraphyItem)); // Class SGraphyImgItem

+ 25 - 30
src/assets/graphy/SGraphy/newItems/SGraphyImgItem.ts

@@ -7,44 +7,39 @@ import { SPen, SPainter, SColor } from "@sybotan-web/draw";
  *
  */
 export class SGraphyImgItem extends SGraphyItem {
-	width: number = 0;
-	height: number = 0;
-	url: string = '';
-	id: string;
+	imgSource: string; //可以为url,base64
 	X: number;
 	Y: number;
-	downUrl: string;
+	width: number = 0;
+	height: number = 0;
+	img: CanvasImageSource
 
 	/**
 	 * 构造函数
 	 * 
-	 * @param width    图片宽度
-	 * @param height   图片高度
-	 * @param url      图片url
-	 * @param id       point的Id
-	 * @param X        图片向x轴的偏移量
-	 * @param Y        图片向y轴的偏移量
-	 * @param downUrl  图片按下时的url
-	 * @param parent   指向父元素
+	 * @param width        		图片宽度
+	 * @param height   				图片高度
+	 * @param imgSource     	图片源
+	 * @param X        				图片向x轴的偏移量
+	 * @param Y        				图片向y轴的偏移量
+	 * @param parent   				指向父元素
 	 */
 	constructor(
 		parent: SGraphyItem | null,
+		imgSource: string,
 		X: number,
 		Y: number,
 		width: number,
 		height: number,
-		url: string,
-		id: string,
-		downUrl: string = ''
 	) {
 		super(parent);
-		this.width = width;
-		this.height = height;
-		this.url = url;
-		this.id = id;
+		this.imgSource = imgSource;
 		this.X = X;
 		this.Y = Y;
-		this.downUrl = downUrl;
+		this.width = width;
+		this.height = height;
+		this.img = new Image();
+		this.img.src = this.imgSource;
 	} // Constructor()
 
 	/**
@@ -60,8 +55,11 @@ export class SGraphyImgItem extends SGraphyItem {
 			this.height
 		);
 	} // Function boundingRect()
+	// contains(x: number, y: number): boolean {
+	// 	return this.boundingRect().contains(x - this.X, y - this.Y);
+	// }
 	onClick(event: SMouseEvent): boolean {
-		this.$emit('click', { item: this, event: event });
+		this.$emit('click', event);
 		return true;
 	} // Function onClick()
 	/**
@@ -71,7 +69,7 @@ export class SGraphyImgItem extends SGraphyItem {
   * @return  boolean
   */
 	onDoubleClick(event: SMouseEvent): boolean {
-		this.$emit('doubleClick', { item: this, event: event });
+		this.$emit('doubleClick', event);
 		return true;
 	}
 	/**
@@ -81,7 +79,7 @@ export class SGraphyImgItem extends SGraphyItem {
   * @return  boolean
   */
 	onMouseDown(event: SMouseEvent): boolean {
-		this.$emit('mouseDown', { item: this, event: event });
+		this.$emit('mouseDown', event);
 		return true;
 	} // Function onMouseDown()
 
@@ -92,7 +90,7 @@ export class SGraphyImgItem extends SGraphyItem {
 	 * @return  boolean
 	 */
 	onMouseMove(event: SMouseEvent): boolean {
-		this.$emit('mouseMove', { item: this, event: event });
+		this.$emit('mouseMove', event);
 		return true;
 	} // Function onMouseMove()
 
@@ -103,7 +101,7 @@ export class SGraphyImgItem extends SGraphyItem {
 	 * @return  boolean
 	 */
 	onMouseUp(event: SMouseEvent): boolean {
-		this.$emit('mouseUp', { item: this, event: event });
+		this.$emit('mouseUp', event);
 		return true;
 	}
 	/**
@@ -113,9 +111,6 @@ export class SGraphyImgItem extends SGraphyItem {
 	 * @param   rect          绘制区域
 	 */
 	onDraw(painter: SPainter, rect?: SRect): void {
-		painter.pen.color = new SColor('#409EFF');
-		painter.brush.color = new SColor('#409EFF');
-		painter.pen.lineWidth = 100;
-		painter.drawCircle(this.X + this.width / 2, this.Y + this.height / 2, this.width / 2);
+		painter.drawImage(this.img, this.X, this.Y, this.width, this.height);
 	}
 } // Class SGraphyImgItem

+ 1 - 1
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.js

@@ -142,7 +142,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
         }
     };
     SGraphyPolygonItem.prototype.onClick = function (event) {
-        this.$emit('click', { item: this, event: event });
+        this.$emit('click', event);
         return true;
     }; // Function onClick()
     /**

+ 1 - 1
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.ts

@@ -149,7 +149,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 		}
 	}
 	onClick(event: SMouseEvent): boolean {
-		this.$emit('click', { item: this, event: event });
+		this.$emit('click', event);
 		return true;
 	} // Function onClick()
 	/**

+ 55 - 317
src/views/data_admin/buildGraphy/graphyCanvas-copy.vue

@@ -23,29 +23,18 @@
 <script>
 import axios from "axios";
 //引擎的引用
-import {
-  SGraphyScene,
-  SGraphyRectItem,
-  SGraphyLineItem,
-  SGraphyPolygonItem,
-  SGraphyVirtualItem,
-  SGraphyImageItem,
-  SGraphyPillarItems,
-  mainScene
-} from "@/assets/graphy";
-import pako from '@/assets/pako/pako'
+import { mainScene } from "@/assets/graphy";
 import { SGraphyView } from "@sybotan-web/graphy";
+import { mapGetters, mapActions } from "vuex";
+import { SPoint } from '@sybotan-web/base/lib';
 import { SPen, SPainter, SColor } from "@sybotan-web/draw";
+import pako from '@/assets/pako/pako'
 import tools from "@/utils/scan/tools";
 import {
-  updatePoint,
-  getPoint,
   formBIMToPri,
-  getPointList,
-  updateBusiness
+  updateBusiness,
+  updateLocationPoint, //更新点位标签
 } from "@/api/scan/request";
-import { mapGetters, mapActions } from "vuex";
-import { SPoint } from '@sybotan-web/base/lib';
 let colorArr = [
   '#00f5ff0d', '#ffdab90d', '#8470ff0d', '#7fff000d', '#ee5c420d',
   '#ffffe00d', '#eee9e90d', '#9c9c9c0d', '#90ee900d', '#b4cdcd0d'
@@ -59,26 +48,17 @@ export default {
       view: "",
       mainScene: null,
       dataMax: "", //最大值最小值数据
-      scene: {
-        x: 0,
-        y: 0
-      },
-      id: null,
       menuShow: false, //右键菜单的显示
       lineShow: false,
       pointShow: false,
       canvasH: 600,
       canvasW: 800,
-      detaleItem: null, //需要删除的数组
-      wallArr: [], //虚拟墙添加时的数组
-      wallList: [], //处理后的墙的线条
-      detaleLine: [], //需要删除的虚拟墙
       type: 1, //1  没有选择楼层, 2没有平面图, 3有平面图
-      data: {},
       list: "",
       buildMess: {},
-      imageUrl: "/image-service/common/image_get?systemId=dev&key=graphy.png",
+      imageUrl: "http://adm.sagacloud.cn/image-service/common/image_get?systemId=dev&key=graphy.png",
       setFlag: false, //插旗标志
+      point: {}, //右侧列表传来的位置标签
     };
   },
   computed: {
@@ -87,6 +67,9 @@ export default {
   created() { },
   mounted() {
     this.resize()
+    document.getElementById("canvas").oncontextmenu = (e) => {
+      this.contextMenu(e)
+    }
   },
   methods: {
     resize() {
@@ -98,111 +81,6 @@ export default {
       this.canvasH =
         document.getElementsByTagName("body")[0].offsetHeight - 167;
     },
-    pointToSpace() {
-      let data = [] //空间数组列表
-      this.mainScene.root.children.map(item => {
-        if (item.type == 3) {
-          data.push(item)
-        }
-      })
-      let relation = []
-      this.list.map(item => {
-        data.map(child => {
-          if (tools.isIn(item.X, item.Y * -1, child.containsArr)) {
-            relation.push({
-              pointId: item.id,
-              spaceId: child.id,
-              pointName: item.Name
-            })
-          }
-        })
-      })
-      //找到没有元空间id的对象,取出对应的array
-      let noIdList = [],
-        hasIdList = []
-      relation.map(item => {
-        if (!!item.spaceId) {
-          hasIdList.push(item)
-        } else {
-          noIdList.push(item)
-        }
-      })
-      let name = ""
-      if (noIdList.length) {
-        for (let i = 0; i < noIdList.length; i++) {
-          name += noIdList[i].pointName + "、"
-        }
-      }
-      let msg = noIdList.length ? "一个空间下重复的点位标签信息录入将会被覆盖!以下标签所在的元空间不存在元空间id:" + name + ",是否继续" : "一个空间下重复的点位标签信息录入将会被覆盖!是否将其标签所在的信息录入元空间中?"
-      this.$confirm(msg, "提示").then(_ => {
-        this.getPointList(hasIdList)
-      }).catch(_ => {
-        this.$message("取消关联")
-      })
-    },
-    //获取标签列表
-    getPointList(hasIdList) {
-      let idList = hasIdList.map(item => {
-        return item.pointId
-      })
-      let param = {
-        IdList: idList,
-        ProjId: this.param.ProjId,
-        UserId: this.param.UserId,
-      }
-      getPointList(param, res => {
-        if (res.PointList && res.PointList.length) {
-          hasIdList.map(item => {
-            res.PointList.map(child => {
-              if (child.PointId == item.pointId) {
-                item.Pic = child.ImageList
-                item.LocalId = child.PointLocalId
-              }
-            })
-          })
-          this.setMess(hasIdList)
-        }
-      })
-    },
-    //给空间中写入信息
-    setMess(hasIdList) {
-      let param = {
-        data: {
-          criterias: null
-        },
-        ProjId: this.param.projId,
-        secret: this.param.secret
-      }
-      hasIdList = tools.arrayUnique(hasIdList, "spaceId")
-      param.data.criterias = hasIdList.map(item => {
-        let criteria = {
-          infos: {}
-        }
-        if (!!item.Pic && item.Pic.length) {
-          criteria.infos.Pic = [{
-            value: item.Pic.map(child => {
-              return {
-                key: child.key,
-                name: child.name,
-                type: child.type,
-                systemId: "dataPlatform"
-              }
-            })
-          }]
-        }
-        criteria.id = item.spaceId
-        criteria.infos.RoomLocalName = [{
-          value: item.pointName || ""
-        }]
-        criteria.infos.RoomLocalID = [{
-          value: item.LocalId || ""
-        }]
-        return criteria
-      })
-      updateBusiness(param).then(res => {
-        console.log(res)
-      })
-    },
     //获取数据
     getData(data) {
       if (!data.map) {
@@ -212,6 +90,7 @@ export default {
         this.type = 3;
       }
     },
+    //下载json文件
     getJson(jsonId) {
       axios({
         method: 'get',
@@ -267,12 +146,6 @@ export default {
         };
       });
     },
-    //事件:canvas的划过事件
-    canvasMove(e) { },
-    //画虚拟墙
-    addLine() {
-      this.view.canvasView.addEventListener("click", this.addLineClick);
-    },
     //画点位坐标
     doPoint(list) {
       this.list = list.map(t => {
@@ -280,53 +153,35 @@ export default {
           return undefined;
         } else {
           return {
+            img: this.imageUrl,
             id: t.Id,
             X: t.X,
             Y: t.Y * -1,
-            Name: t.Name
+            width: 5000,
+            height: 5000,
+            name: t.Name
           };
         }
       }).filter(item => item);
       this.getJson(this.buildMess.map)
     },
-    //右键菜单的查看详情
+    //右键菜单的编辑该标签
     getDatails() {
-      let arr = this.view.scene.root.children;
-      let index = arr.indexOf(this.detaleItem);
-      this.$emit("getDetails", {
-        Id: arr[index].id
-      });
+      this.$emit("getDetails", { Id: this.point.id });
     },
     //右键的清除该点位的坐标
     clearXY() {
-      let param = {
-        PointId: this.detaleItem.id,
-        ProjId: this.param.ProjId,
-        UserId: this.param.UserId
-      };
-      this.changePoint(param, {
-        x: 0,
-        y: 0
-      }, false);
+      this.point.X = 0
+      this.point.Y = 0
+      this.updatePoint()
     },
     //右键的修改为无法定位到楼层的点位
     noLocate() {
-      let param = {
-        PointId: this.detaleItem.id,
-        ProjId: this.param.ProjId,
-        UserId: this.param.UserId
-      };
-      this.changePoint(param, {
-        x: 0,
-        y: 0
-      }, 2);
-    },
-    //右键菜单隐藏
-    menuNone() {
-      this.menuShow = this.lineShow = this.pointShow = false;
+      delete this.point.FloorId
+      this.updatePoint()
     },
-    async bimIdToId(ids, data) {
-      await formBIMToPri({
+    bimIdToId(ids, data) {
+      formBIMToPri({
         type: ["Si"],
         ids: ids,
         ProjId: this.param.ProjId,
@@ -416,95 +271,16 @@ export default {
       this.view.origin = new SPoint(centerX, centerY)
     },
     //点击按钮
-    addPoint(item) {
-      // let bbox = this.view.canvasView.getBoundingClientRect();
-      // this.id = item.Id;
-      // this.view.canvasView.style.cursor =
-      //   "url(http://prod.dp.sagacloud.cn:28888/image-service/common/image_get?systemId=dev&key=graphy.png),auto";
-      // this.view.canvasView.addEventListener("click", this.getPoint);
+    addPoint(point) {
+      this.point = point;
+      this.view.canvasView.style.cursor = `url(${this.imageUrl}),auto`;
       this.setFlag = true
     },
-    //获取鼠标相对canvas的位置
-    getMouseCanvas(e) {
-      let bbox = this.view.canvasView.getBoundingClientRect();
-      let x = e.clientX - bbox.left,
-        y = e.clientY - bbox.top;
-      return {
-        x: x,
-        y: y
-      };
-    },
-    //修改点位坐标信息
-    changePoint(getParam, pointWall, falg, createPoint) {
-      let pointList = null;
-      getPoint(getParam).then(res => {
-        if (res.data.Result == "success") {
-          let param = {
-            ProjId: this.param.ProjId,
-            UserId: this.param.UserId,
-            PointList: res.data.PointList[0]
-          };
-          param.PointList.X = pointWall.x;
-          param.PointList.Y = pointWall.y * -1;
-          if (!param.PointList.FloorId) {
-            param.PointList.FloorId = this.data.code;
-          }
-          if (falg == 2) {
-            param.PointList.FloorId = "";
-          }
-          updatePoint(param).then(res => {
-            if (res.data.Result == "success") {
-              this.id = null;
-              if (falg == 1) {
-                this.mainScene.addItem(createPoint);
-                this.$message.success("标记成功");
-              } else if (falg == 2) {
-                this.view.scene.removeItem(this.detaleItem);
-                this.detaleItem = null;
-                this.$message.success("修改成功");
-              } else if (falg == 3) {
-                this.detaleItem = null;
-                this.$message.success("修改成功");
-              } else {
-                this.view.scene.removeItem(this.detaleItem);
-                this.detaleItem = null;
-                this.$message.success("修改成功");
-              }
-              this.$emit("resetPoint");
-            } else {
-              this.$message("标记失败,请重新标记");
-            }
-          });
-        } else {
-          this.$message.error("获取点位信息失败");
-        }
-      });
-    },
-    /** canvas事件------------------------------------------------------------------------------------*/
-    //点击事件
-    getPoint(e) {
-      let pointMess = this.getMouseCanvas(e);
-      // 获取真实的point
-      let pointWall = this.view.mapToScene(pointMess);
-      let url = this.imageUrl;
-      let createPoint = new SGraphyImageItem(30, 30, url, this.id);
-      //移动新建的point
-      createPoint.moveTo(pointWall.x, pointWall.y);
-      let getParam = {
-        PointId: this.id,
-        ProjId: this.param.ProjId,
-        UserId: this.param.UserId
-      };
-      this.changePoint(getParam, pointWall, 1, createPoint);
-      this.view.canvasView.style.cursor = "auto";
-      this.view.canvasView.removeEventListener("click", this.getPoint);
-    },
     //右键菜单
     contextMenu(e) {
       //取消默认的浏览器自带的右键
       e.preventDefault();
       //将canvas的坐标转换成数据坐标
-      let point = this.view.mapToScene(this.getMouseCanvas(e));
       //设立falg判断是否在标签上
       let falg = false,
         index = 0,
@@ -518,12 +294,6 @@ export default {
             falg = true;
           }
         }
-        // if (items[i].type == 4) {
-        //   if (items[i].contains(point.x, point.y)) {
-        //     wallIndex = i;
-        //     wallFalg = true;
-        //   }
-        // }
       }
       //如果在标签上
       if (falg || wallFalg) {
@@ -552,84 +322,52 @@ export default {
         this.menuShow = false;
       }
     },
-    //鼠标抬起事件,数据发生改变
-    dataChange(e) {
-      let item = this.mouseInElement(this.view, e);
-      let childRen = this.view.scene.root.children;
-      myData = [];
-      for (let i in childRen) {
-        if (childRen[i].type == 1) {
-          myData.push({
-            Id: childRen[i].id,
-            name: childRen[i].name,
-            PointList: {
-              X: childRen[i]._pos.x,
-              Y: childRen[i]._pos.y
-            }
-          });
-        }
-      }
-      myData.map(item => {
-        for (let j = 0; j < this.list.length; j++) {
-          if (item.Id == this.list[j].id && (item.PointList.X != this.list[j].X || item.PointList.Y * -1 != this.list[j].Y)) {
-            this.list[j].X = item.PointList.X
-            this.list[j].Y = item.PointList.Y
-            let param = {
-              PointId: item.Id,
-              ProjId: this.param.ProjId,
-              UserId: this.param.UserId
-            };
-            this.changePoint(param, {
-              x: item.PointList.X,
-              y: item.PointList.Y
-            }, 3);
-          }
-        }
-      })
-    },
-    mouseInElement(view, e) {
-      let mouse = this.getMouseCanvas(e),
-        falg = false,
-        items = view.scene.root.children,
-        i = 0;
-      for (; i < items.length; i++) {
-        if (items[i].type == 1) {
-          if (items[i].contains(mouse)) {
-            falg = true;
-            break;
-          }
-        }
-      }
-      return {
-        falg,
-        item: items[i] || [],
-        index: i
-      };
-    },
-    //调整到合适比例
+    //合适比例
     suitableSize() {
       this.view.fitSceneToView();
     },
-    //调整到小比例
+    //缩小
     smallSize() {
       let centerX = this.view.width / 2
       let centerY = this.view.height / 2
       this.view.scaleByPoint(0.9, centerX, centerY)
     },
+    //放大
     bigSize() {
       let centerX = this.view.width / 2
       let centerY = this.view.height / 2
       this.view.scaleByPoint(1.1, centerX, centerY)
     },
     //插旗 item - 点击的空间item
-    setNewFlag(item) {
+    setNewFlag(item, event) {
       if (this.setFlag) {
-        console.log(item)
         if (item.isBusiness) {
-          this.view.scene.addImgList([{ X: item.centerOfGravityPoint.x, Y: item.centerOfGravityPoint.y }])
+          this.view.scene.addImgList([{
+            img: this.imageUrl,
+            X: event[0].x,
+            Y: event[0].y,
+            width: 5000,
+            height: 5000
+          }])
+          this.view.canvasView.style.cursor = `default`;
+
+          this.point.X = event[0].x
+          this.point.Y = -event[0].y
+          this.updatePoint()
+        } else {
+          this.$message.warning('请在空间内选择')
         }
       }
       this.setFlag = false
+    },
+    //更新位置标签
+    updatePoint() {
+      let pa = {
+        Content: [this.point]
+      }
+      updateLocationPoint(pa, res => {
+        this.$message.success('修改成功')
+      })
     }
   },
   watch: {