浏览代码

import new canvas

haojianlong 5 年之前
父节点
当前提交
a0840baa2d

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

@@ -11,7 +11,9 @@ var __extends = (this && this.__extends) || (function () {
         d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
     };
 })();
+import { SPoint } from "@sybotan-web/base";
 import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js';
+import { SGraphyWallItem } from './newItems/SGraphyWallItem.js';
 import { SGraphyScene } from "@sybotan-web/graphy";
 /**
  * @name mainScene
@@ -82,8 +84,11 @@ var mainScene = /** @class */ (function (_super) {
      * 增添所有绘制item(地图);
     */
     mainScene.prototype.addAllItemList = function (data) {
+        console.log(data);
         var space = data.SpaceList;
         this.addSpaceList(space); //绘制空间
+        var wall = data.WallList;
+        this.addWallList(wall);
     };
     /**
      * 添加所有空间到scene 中
@@ -110,7 +115,16 @@ var mainScene = /** @class */ (function (_super) {
         }
     };
     // 绘制墙体
-    mainScene.prototype.addWallList = function () {
+    mainScene.prototype.addWallList = function (wall) {
+        var _this_1 = this;
+        if (wall && wall.length) {
+            wall.map(function (t) {
+                var newArr = t.PointList.map(function (pa) {
+                    return new SPoint(pa.X, pa.Y);
+                });
+                _this_1.addItem(new SGraphyWallItem(null, newArr));
+            });
+        }
     };
     // 绘制设备
     mainScene.prototype.addEquipmentList = function () {

+ 13 - 2
src/assets/graphy/SGraphy/mainScene.ts

@@ -1,6 +1,7 @@
 
 import { SRect, SSize, SPoint } from "@sybotan-web/base";
 import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js'
+import { SGraphyWallItem } from './newItems/SGraphyWallItem.js'
 import { SGraphyScene, SMouseEvent } from "@sybotan-web/graphy";
 import { SPen, SPainter, SColor } from "@sybotan-web/draw";
 import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface } from './dataType.js'   //传入参数的参数接口类型
@@ -70,8 +71,11 @@ export default class mainScene extends SGraphyScene {
      * 增添所有绘制item(地图);
     */
     addAllItemList(data: dataInterface) {
+        console.log(data)
         let space: dataSpaceItem[] = data.SpaceList;
         this.addSpaceList(space) //绘制空间
+        let wall: dataItem[] = data.WallList;
+        this.addWallList(wall)
     }
 
     /**
@@ -101,8 +105,15 @@ export default class mainScene extends SGraphyScene {
         }
     }
     // 绘制墙体
-    addWallList(): void {
-
+    addWallList(wall: dataItem[]): void {
+        if (wall && wall.length) {
+            wall.map(t => {
+                let newArr = t.PointList.map(pa => {
+                    return new SPoint(pa.X, pa.Y)
+                })
+                this.addItem(new SGraphyWallItem(null, newArr))
+            })
+        }
     }
     // 绘制设备
     addEquipmentList() {

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

@@ -46,7 +46,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
         _this.cacheWidth = 0;
         // 修改绘制路径格式
         var newSpacePaths = PolygonItemData.space.Paths[0].map(function (item) {
-            return new SPoint(item.X, -item.Y);
+            return new SPoint(item.X, item.Y);
         });
         _this.pointArr = newSpacePaths;
         // // 填充色
@@ -58,7 +58,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
         //中心点
         _this.centerOfGravityPoint = {
             x: PolygonItemData.space.LocationPoint.X,
-            y: PolygonItemData.space.LocationPoint.Y
+            y: PolygonItemData.space.LocationPoint.Y * (-1)
         };
         //业务空间类型
         PolygonItemData.isBusiness ? _this.isBusiness = PolygonItemData.isBusiness : _this.isBusiness = 1;

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

@@ -9,9 +9,9 @@ import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterf
  */
 export class SGraphyPolygonItem extends SGraphyItem {
 	pointArr: SPoint[];
-	fillColor: SColor =new SColor('#F2F6FC');
+	fillColor: SColor = new SColor('#F2F6FC');
 	color: SColor = SColor.Black;
-	width: number =0;
+	width: number = 0;
 	businessId: string | null;
 	id: string | null;
 	centerOfGravityPoint: { x: number, y: number };
@@ -19,9 +19,9 @@ export class SGraphyPolygonItem extends SGraphyItem {
 	initName: null | string | undefined;        //空间名字
 	viewText: string = '111'                         //绘出的文案
 	isBusiness: number = 1;
-	cacheColor:SColor= SColor.Black             //需要缓存的边框
-	cacheFillColor:SColor =	 new SColor('#F2F6FC');        //需要缓存的填充色
-	cacheWidth:number = 0;
+	cacheColor: SColor = SColor.Black             //需要缓存的边框
+	cacheFillColor: SColor = new SColor('#F2F6FC');        //需要缓存的填充色
+	cacheWidth: number = 0;
 	// actived: boolean = false; 				//是否激活
 	/**
 	 * 构造函数
@@ -40,7 +40,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 		super(PolygonItemData.parent);
 		// 修改绘制路径格式
 		let newSpacePaths: SPoint[] = PolygonItemData.space.Paths[0].map(item => {
-			return new SPoint(item.X, -item.Y)
+			return new SPoint(item.X, item.Y)
 		});
 		this.pointArr = newSpacePaths;
 		// // 填充色
@@ -52,7 +52,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 		//中心点
 		this.centerOfGravityPoint = {
 			x: PolygonItemData.space.LocationPoint.X,
-			y: PolygonItemData.space.LocationPoint.Y
+			y: PolygonItemData.space.LocationPoint.Y * (-1)
 		};
 		//业务空间类型
 		PolygonItemData.isBusiness ? this.isBusiness = PolygonItemData.isBusiness : this.isBusiness = 1;
@@ -60,7 +60,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 		PolygonItemData.businessId ? this.businessId = PolygonItemData.businessId : this.businessId = null;
 		//业务空间名称
 		this.businessName = PolygonItemData.space.Name;
-		this.initName =  PolygonItemData.space.Name;
+		this.initName = PolygonItemData.space.Name;
 		// 空间id
 		this.id = PolygonItemData.space.id;
 	}
@@ -143,9 +143,9 @@ export class SGraphyPolygonItem extends SGraphyItem {
 			painter.brush.color = this.fillColor;
 			painter.pen.lineWidth = this.width;
 			painter.drawPolygon(this.pointArr);
-			painter.font.size = this.scale*200;
+			painter.font.size = this.scale * 200;
 			painter.brush.color = SColor.Black;
-			painter.drawText(this.viewText,this.centerOfGravityPoint.x,this.centerOfGravityPoint.y)
+			painter.drawText(this.viewText, this.centerOfGravityPoint.x, this.centerOfGravityPoint.y)
 		}
 	}
 	onClick(event: SMouseEvent): boolean {
@@ -173,23 +173,23 @@ export class SGraphyPolygonItem extends SGraphyItem {
 		return true;
 	} // Function onMouseDown()
 
-    /**
-     * 鼠标移动事件
-     *
-     * @param   event   保存事件参数
-     * @return  boolean
-     */
+	/**
+	 * 鼠标移动事件
+	 *
+	 * @param   event   保存事件参数
+	 * @return  boolean
+	 */
 	onMouseMove(event: SMouseEvent): boolean {
 		this.$emit('mouseMove', { item: this, event: event });
 		return true;
 	} // Function onMouseMove()
 
-    /**
-     * 释放鼠标事件
-     *
-     * @param   event   保存事件参数
-     * @return  boolean
-     */
+	/**
+	 * 释放鼠标事件
+	 *
+	 * @param   event   保存事件参数
+	 * @return  boolean
+	 */
 	onMouseUp(event: SMouseEvent): boolean {
 		this.$emit('mouseUp', { item: this, event: event });
 		return true;

+ 1 - 0
src/assets/graphy/SGraphy/newItems/SGraphyWallItem.js

@@ -84,6 +84,7 @@ var SGraphyWallItem = /** @class */ (function (_super) {
             // painter.pen = new SPen(this.color, this.width);
             painter.pen.color = this.color;
             painter.brush.color = this.fillColor;
+            painter.pen.lineWidth = 100;
             painter.drawPolyline(this.pointArr);
         }
     };

+ 1 - 0
src/assets/graphy/SGraphy/newItems/SGraphyWallItem.ts

@@ -83,6 +83,7 @@ export class SGraphyWallItem extends SGraphyItem {
 			// painter.pen = new SPen(this.color, this.width);
 			painter.pen.color = this.color;
 			painter.brush.color = this.fillColor;
+			painter.pen.lineWidth = 100;
 			painter.drawPolyline(this.pointArr)
 		}
 	}

+ 2 - 2
src/assets/graphy/index.js

@@ -9,5 +9,5 @@ import SGraphyImageItem from './SGraphy/items/SGraphyImageItem'
 import SGraphyPillarItems from './SGraphy/items/SGraphyPillarItems'
 import SGraphyTextItems from './SGraphy/items/SGraphyTextItems'
 import SGraphyVirtualItem from './SGraphy/items/SGraphyVirtualItem'
-
-export { SGraphyView, SGraphyScene, SGraphyClockItem, SGraphyRectItem, SGraphyLineItem, SGraphyPolygonItem, SGraphyCircleItem, SGraphyImageItem, SGraphyPillarItems, SGraphyTextItems, SGraphyVirtualItem }
+import mainScene from './SGraphy/mainScene.js'
+export {mainScene,SGraphyView, SGraphyScene, SGraphyClockItem, SGraphyRectItem, SGraphyLineItem, SGraphyPolygonItem, SGraphyCircleItem, SGraphyImageItem, SGraphyPillarItems, SGraphyTextItems, SGraphyVirtualItem }

文件差异内容过多而无法显示
+ 722 - 856
src/views/data_admin/buildGraphy/graphyCanvas-copy.vue


+ 1 - 0
src/views/data_admin/buildGraphy/graphyTabs.vue

@@ -311,6 +311,7 @@ export default {
         getPT(param).then(res => {
           res.data.PointList.splice(0, 1);
           this.pointData = res.data.PointList;
+          console.log(this.pointData)
           if (this.index == 0) {
             this.$emit("getPointList", res.data.PointList);
           }

+ 5 - 8
src/views/data_admin/buildGraphy/index.vue

@@ -26,6 +26,7 @@
 //接口
 import graphyTree from "./graphyTree";
 import graphyTabs from "./graphyTabs";
+// import graphyCanvas from "./graphyCanvas-copy";
 import graphyCanvas from "./graphyCanvas";
 import {
   mapGetters,
@@ -104,7 +105,7 @@ export default {
     getList() {
       let param = {
         Cascade: [
-          { Name: "floor", Orders:'FloorSequenceID desc' }
+          { Name: "floor", Orders: 'FloorSequenceID desc' }
         ],
         PageNumber: 1,
         PageSize: 50
@@ -167,15 +168,11 @@ export default {
     },
     //获取到点位标签坐标
     sendPointList(list) {
-      if (list && list.length && list[0].Id == this.pointId) {
+      if (list && list.length) {
+        this.pointId = list[0].Id;
         this.$refs.canvas.doPoint(list);
       } else {
-        if (list.length) {
-          this.pointId = list[0].Id;
-          this.$refs.canvas.doPoint(list);
-        } else {
-          this.$refs.canvas.doPoint([]);
-        }
+        this.$refs.canvas.doPoint([]);
       }
     },
     //插旗setFalg