|
@@ -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: {
|