浏览代码

modify canvas items

haojianlong 5 年之前
父节点
当前提交
08f2c88009

+ 10 - 21
src/assets/graphy/SGraphy/dataType.ts

@@ -1,5 +1,5 @@
 import { SPen, SPainter, SColor } from "@sybotan-web/draw";
-import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem'
+import SGraphyPolygonItem from './newItems/SGraphyPolygonItem'
 /**
  * 接口类型
  * @param
@@ -32,7 +32,13 @@ interface dataSpaceItem {
     Name: string,
     Paths: dataItemPath[][],
     id: string,
-    isBusiness: number
+    type: number,                  //item类型
+    businessId?: string | null,  //绑定的业务id
+    isBusiness?: number,        //业务类型
+    fillColor?: SColor,         //填充颜色
+    color?: SColor,             //边框颜色
+    businessName?: string | null,  //业务名称
+    width?: number
 }
 // 传入的data 的接口类型 
 interface dataInterface {
@@ -41,7 +47,6 @@ interface dataInterface {
     SpaceList: dataSpaceItem[], //空间
     VirtualWallList: dataItem[], //虚拟墙
     WallList: dataItem[],    //墙
-    images: ImgItemInterface[] //图片
 }
 //获取绑定空间的接口
 interface businessDataInterface {
@@ -55,22 +60,6 @@ interface businessDataInterface {
 interface PolygonItemInterface {
     parent: SGraphyPolygonItem | null //父类
     space: dataSpaceItem,       //传入的item 参数
-    businessId?: string | null,  //绑定的业务id
-    isBusiness?: number,        //业务类型
-    fillColor?: SColor,         //填充颜色
-    color?: SColor,             //边框颜色
-    businessName?: string | null,  //业务名称
-    width?: number
-}
-// 图片传入的参数接口
-interface ImgItemInterface {
-    parent: SGraphyPolygonItem | null //父类
-    X: number;
-    Y: number;
-    width: number;
-    height: number;
-    img: string;
-    id?: string;
-    name: string;
+    businessType?: string
 }
-export { dataItemPath, dataItem, dataSpaceItem, dataInterface, businessDataInterface, PolygonItemInterface, ImgItemInterface }
+export { dataItemPath, dataItem, dataSpaceItem, dataInterface, businessDataInterface, PolygonItemInterface }

+ 72 - 33
src/assets/graphy/SGraphy/mainScene.js

@@ -11,11 +11,11 @@ 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 { SGraphyImgItem } from './newItems/SGraphyImgItem.js';
+import SGraphyPolygonItem from './newItems/SGraphyPolygonItem.js';
 import { SGraphyScene } from "@sybotan-web/graphy";
+import Axios from 'axios';
+import pako from "./until/pako.js";
+import tools from "./until/tool.js";
 /**
  * @name mainScene
  * @time 2019-07.07;
@@ -33,7 +33,9 @@ var mainScene = /** @class */ (function (_super) {
         _this_1._isShowEquipmentList = true; //是否展示设备;
         _this_1._isShowVrtualWallList = true; //是否展示虚拟墙
         _this_1.data = data;
-        _this_1.addAllItemList(data);
+        if (_this_1.data != null) {
+            _this_1.addAllItemList(_this_1.data);
+        }
         return _this_1;
     }
     Object.defineProperty(mainScene.prototype, "isShowSpace", {
@@ -80,18 +82,71 @@ var mainScene = /** @class */ (function (_super) {
         enumerable: true,
         configurable: true
     });
+    //获取参数
+    mainScene.prototype.urlGetData = function (url) {
+        var _this_1 = this;
+        var that = this;
+        return new Promise(function (relove, reject) {
+            Axios({
+                method: 'get',
+                url: url,
+                data: {},
+                responseType: 'blob',
+            }).then(function (res) {
+                var blob = res.data;
+                _this_1.zipToJson(blob).then(function (jsonData) {
+                    that.addAllItemList(jsonData);
+                    relove();
+                }).catch(function (error) {
+                    console.log(error);
+                });
+                // console.log(reader)
+            }).catch(function (res) {
+                console.log(res);
+            });
+        });
+    };
+    // 压缩包变为json格式数据
+    mainScene.prototype.zipToJson = function (blob) {
+        var data = null;
+        var reader = new FileReader();
+        reader.readAsBinaryString(blob);
+        var _this = this;
+        return new Promise(function (resolve) {
+            reader.onload = function (readerEvt) {
+                var binaryString = readerEvt.target.result;
+                //解压数据
+                var base64Data = btoa(binaryString);
+                var unGzipData = pako.unzip(base64Data);
+                data = unGzipData;
+                if (data.WallList && data.WallList.length) {
+                    tools.changeMap(data.WallList, -1, "PointList");
+                }
+                if (data.SpaceList && data.SpaceList.length) {
+                    tools.changeMap(data.SpaceList, -1, "Paths");
+                }
+                if (data.ColumnList && data.ColumnList.length) {
+                    tools.changeMap(data.ColumnList, -1, "Path");
+                }
+                if (data.VirtualWallList && data.VirtualWallList.length) {
+                    tools.changeMap(data.VirtualWallList, -1, "PointList");
+                }
+                if (data.EquipmentList && data.EquipmentList.length) {
+                    tools.changeMap(data.EquipmentList, -1, "PointList");
+                }
+                resolve(data);
+            };
+        });
+    };
     // 以下是绘制方法
     /**
      * 增添所有绘制item(地图);
     */
     mainScene.prototype.addAllItemList = function (data) {
-        console.log(data);
         var space = data.SpaceList;
+        // let wall:
         this.addSpaceList(space); //绘制空间
-        var wall = data.WallList;
-        this.addWallList(wall);
-        var images = data.images;
-        this.addImgList(images);
+        this.addWallList(); //绘制墙
     };
     /**
      * 添加所有空间到scene 中
@@ -101,33 +156,26 @@ var mainScene = /** @class */ (function (_super) {
         if (space && space.length) {
             for (var i = 0; i < space.length; i++) {
                 if (space[i].Paths[1] && space[i].Paths[1].length >= 2) {
-                    space[i].isBusiness = 2;
                     this.addItem(this.constructeItem({
                         parent: null,
-                        space: space[i]
+                        space: space[i],
+                        businessType: 'space'
                     }));
                 }
+            }
+            for (var i = 0; i < space.length; i++) {
                 if (space[i].Paths[0] && space[i].Paths[0].length >= 2 && !space[i].Paths[1]) {
-                    space[i].isBusiness = 2;
                     this.addItem(this.constructeItem({
                         parent: null,
-                        space: space[i]
+                        space: space[i],
+                        businessType: 'space'
                     }));
                 }
             }
         }
     };
     // 绘制墙体
-    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.addWallList = function () {
     };
     // 绘制设备
     mainScene.prototype.addEquipmentList = function () {
@@ -138,15 +186,6 @@ var mainScene = /** @class */ (function (_super) {
     // 绘制虚拟墙
     mainScene.prototype.addVrtualWallList = function () {
     };
-    // 绘制图片 -- todo
-    mainScene.prototype.addImgList = function (images) {
-        var _this_1 = this;
-        if (images && images.length) {
-            images.map(function (t) {
-                _this_1.addItem(new SGraphyImgItem(null, t.img, t.X, t.Y, t.width, t.height));
-            });
-        }
-    };
     /**
      * 产生item实例
      */

+ 78 - 38
src/assets/graphy/SGraphy/mainScene.ts

@@ -1,12 +1,12 @@
 
 import { SRect, SSize, SPoint } from "@sybotan-web/base";
-import { SGraphyPolygonItem } from './newItems/SGraphyPolygonItem.js'
-import { SGraphyWallItem } from './newItems/SGraphyWallItem.js'
-import { SGraphyImgItem } from './newItems/SGraphyImgItem.js'
+import  SGraphyPolygonItem from './newItems/SGraphyPolygonItem.js'
 import { SGraphyScene, SMouseEvent } from "@sybotan-web/graphy";
 import { SPen, SPainter, SColor } from "@sybotan-web/draw";
-import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface, ImgItemInterface } from './dataType.js'   //传入参数的参数接口类型
-
+import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterface } from './dataType'   //传入参数的参数接口类型
+import Axios from 'axios';
+import pako from "./until/pako.js"
+import tools from "./until/tool.js"
 /**
  * @name mainScene
  * @time 2019-07.07;
@@ -15,14 +15,13 @@ import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterf
 
 export default class mainScene extends SGraphyScene {
 
-    data: dataInterface;
+    data: dataInterface | null;
 
     private _isShowSpace: boolean = true;  // 是否显示空间;
     private _isShowWallList: boolean = true;  //是否展示墙体;
     private _isShowEquipmentList: boolean = true; //是否展示设备;
     private _isShowVrtualWallList: boolean = true; //是否展示虚拟墙
 
-
     // 设置是否显示空间
     get isShowSpace(): boolean {
         return this._isShowSpace
@@ -59,26 +58,80 @@ export default class mainScene extends SGraphyScene {
      * @param data 绘制空间地图得所有参数
      */
 
-    constructor(data: dataInterface) {
+    constructor(data: dataInterface | null) {
         super()
         this.data = data;
-        this.addAllItemList(data);
+        if (this.data != null) {
+            this.addAllItemList(this.data);
+        }
+    }
+    //获取参数
+    urlGetData(url: string) {
+        let that = this;
+        return new Promise((relove, reject) => {
+            Axios({
+                method: 'get',
+                url: url,
+                data: {},
+                responseType: 'blob',
+                // contentType: "charset=utf-8"
+            }).then(res => {
+                var blob = res.data;
+                this.zipToJson(blob).then((jsonData:any)=>{
+                    that.addAllItemList(jsonData)
+                    relove()
+                }).catch((error:any)=>{
+                    console.log(error)
+                });
+                // console.log(reader)
+            }).catch(res=>{
+                console.log(res)
+            })
+        })
+
+    }
+    // 压缩包变为json格式数据
+    zipToJson(blob:any):any{
+           let data = null;
+           var reader = new FileReader();
+           reader.readAsBinaryString(blob);
+           let _this = this;
+           return new Promise((resolve)=>{
+            reader.onload = function (readerEvt: any) {
+                var binaryString = readerEvt.target.result;
+                //解压数据
+                let base64Data = btoa(binaryString)
+                let unGzipData = pako.unzip(base64Data)
+                data = unGzipData;
+                if (data.WallList && data.WallList.length) {
+                    tools.changeMap(data.WallList, -1, "PointList");
+                }
+                if (data.SpaceList && data.SpaceList.length) {
+                    tools.changeMap(data.SpaceList, -1, "Paths");
+                }
+                if (data.ColumnList && data.ColumnList.length) {
+                    tools.changeMap(data.ColumnList, -1, "Path");
+                }
+                if (data.VirtualWallList && data.VirtualWallList.length) {
+                    tools.changeMap(data.VirtualWallList, -1, "PointList");
+                }
+                if (data.EquipmentList && data.EquipmentList.length) {
+                    tools.changeMap(data.EquipmentList, -1, "PointList");
+                }
+                resolve(data)
+            };
+           })
     }
-
-
     // 以下是绘制方法
 
     /** 
      * 增添所有绘制item(地图);
     */
     addAllItemList(data: dataInterface) {
-        console.log(data)
         let space: dataSpaceItem[] = data.SpaceList;
+        // let wall:
         this.addSpaceList(space) //绘制空间
-        let wall: dataItem[] = data.WallList;
-        this.addWallList(wall)
-        let images: ImgItemInterface[] = data.images;
-        this.addImgList(images)
+        this.addWallList()       //绘制墙
     }
 
     /**
@@ -89,37 +142,32 @@ export default class mainScene extends SGraphyScene {
         if (space && space.length) {
             for (let i = 0; i < space.length; i++) {
                 if (space[i].Paths[1] && space[i].Paths[1].length >= 2) {
-                    space[i].isBusiness = 2
                     this.addItem(this.constructeItem(
                         {
                             parent: null,
-                            space: space[i]
+                            space: space[i],
+                            businessType:'space'
                         }));
                 }
+            }
+            for (let i = 0; i < space.length; i++) {
                 if (space[i].Paths[0] && space[i].Paths[0].length >= 2 && !space[i].Paths[1]) {
-                    space[i].isBusiness = 2
                     this.addItem(this.constructeItem(
                         {
                             parent: null,
-                            space: space[i]
+                            space: space[i],
+                            businessType:'space'
                         }));
                 }
             }
         }
     }
     // 绘制墙体
-    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))
-            })
-        }
+    addWallList(): void {
+
     }
     // 绘制设备
-    addEquipmentList(): void {
+    addEquipmentList() {
     }
     // 绘制柱体
     addColumnListList(): void {
@@ -127,14 +175,6 @@ export default class mainScene extends SGraphyScene {
     // 绘制虚拟墙
     addVrtualWallList(): void {
     }
-    // 绘制图片 -- todo
-    addImgList(images: ImgItemInterface[]): void {
-        if (images && images.length) {
-            images.map(t => {
-                this.addItem(new SGraphyImgItem(null, t.img, t.X, t.Y, t.width, t.height))
-            })
-        }
-    }
     /**
      * 产生item实例
      */

+ 39 - 17
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.js

@@ -31,44 +31,48 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
      * @param businessId								空间id
      * @param businessName							空间名称
      * @param centerOfGravityPoint			中心点
-     * @param isBusiness						    状态
+     * @param isBusiness								状态
      * @param parent
      */
     function SGraphyPolygonItem(PolygonItemData) {
         var _this = _super.call(this, PolygonItemData.parent) || this;
         _this.fillColor = new SColor('#F2F6FC');
         _this.color = SColor.Black;
-        _this.width = 0;
-        _this.viewText = '111'; //绘出的文案
+        _this.width = 200;
+        _this.viewText = ''; //绘出的文案
         _this.isBusiness = 1;
         _this.cacheColor = SColor.Black; //需要缓存的边框
         _this.cacheFillColor = new SColor('#F2F6FC'); //需要缓存的填充色
-        _this.cacheWidth = 0;
+        _this.cacheWidth = 100;
+        _this.businessType = ''; //类型
         // 修改绘制路径格式
         var newSpacePaths = PolygonItemData.space.Paths[0].map(function (item) {
             return new SPoint(item.X, item.Y);
         });
         _this.pointArr = newSpacePaths;
-        // // 填充色
-        PolygonItemData.fillColor ? _this.fillColor = PolygonItemData.fillColor : _this.fillColor = new SColor('#F2F6FC');
+        // 填充色
+        _this.fillColor = PolygonItemData.space.fillColor ? PolygonItemData.space.fillColor : new SColor('#F2F6FC');
         // 边框色
-        PolygonItemData.color ? _this.color = PolygonItemData.color : _this.color = SColor.Black;
+        _this.color = PolygonItemData.space.color ? PolygonItemData.space.color : SColor.Black;
         //边框宽度
-        PolygonItemData.width ? _this.width = PolygonItemData.width : _this.width = 0;
+        _this.width = PolygonItemData.space.width ? PolygonItemData.space.width : 100;
         //中心点
         _this.centerOfGravityPoint = {
             x: PolygonItemData.space.LocationPoint.X,
-            y: PolygonItemData.space.LocationPoint.Y * (-1)
+            y: -PolygonItemData.space.LocationPoint.Y
         };
         //业务空间类型
-        _this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : _this.isBusiness = 1;
+        _this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : 1;
         //业务空间id
-        PolygonItemData.businessId ? _this.businessId = PolygonItemData.businessId : _this.businessId = null;
+        _this.businessId = PolygonItemData.space.businessId ? PolygonItemData.space.businessId : null;
         //业务空间名称
         _this.businessName = PolygonItemData.space.Name;
         _this.initName = PolygonItemData.space.Name;
         // 空间id
         _this.id = PolygonItemData.space.id;
+        _this.viewText = PolygonItemData.space.Name;
+        //类型
+        _this.businessType = PolygonItemData.businessType ? PolygonItemData.businessType : '';
         return _this;
     }
     /**
@@ -125,6 +129,17 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
         return nCross % 2 === 1;
     };
     /**
+     *
+     * @param text 修改的文字
+     * @param centerOfGravityPoint 文字的坐标
+     */
+    SGraphyPolygonItem.prototype.addText = function (text, centerOfGravityPoint) {
+        this.viewText = text;
+        if (centerOfGravityPoint) {
+            this.centerOfGravityPoint = centerOfGravityPoint;
+        }
+    };
+    /**
      * Item绘制操作
      *
      * @param   painter       painter对象
@@ -136,13 +151,20 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
             painter.brush.color = this.fillColor;
             painter.pen.lineWidth = this.width;
             painter.drawPolygon(this.pointArr);
+            // let text = ''
+            // if (this.businessName || this.businessId) {
+            // 	text = '👇   ' + this.businessName
+            // } else {
+            // 	text = '⬇️   ' + this.initName
+            // }
             painter.font.size = this.scale * 200;
             painter.brush.color = SColor.Black;
+            // painter.drawText(text,this.centerOfGravityPoint.x,this.centerOfGravityPoint.y)
             painter.drawText(this.viewText, this.centerOfGravityPoint.x, this.centerOfGravityPoint.y);
         }
     };
     SGraphyPolygonItem.prototype.onClick = function (event) {
-        this.$emit('click', event);
+        this.$emit('click', { item: this, event: event });
         return true;
     }; // Function onClick()
     /**
@@ -152,7 +174,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
   * @return  boolean
   */
     SGraphyPolygonItem.prototype.onDoubleClick = function (event) {
-        this.$emit('doubleClick', { item: this, event: event });
+        this.$emit('doubleClick', event);
         return true;
     };
     /**
@@ -162,7 +184,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
   * @return  boolean
   */
     SGraphyPolygonItem.prototype.onMouseDown = function (event) {
-        this.$emit('mouseDown', { item: this, event: event });
+        this.$emit('mouseDown', event);
         return true;
     }; // Function onMouseDown()
     /**
@@ -172,7 +194,7 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
      * @return  boolean
      */
     SGraphyPolygonItem.prototype.onMouseMove = function (event) {
-        this.$emit('mouseMove', { item: this, event: event });
+        this.$emit('mouseMove', event);
         return true;
     }; // Function onMouseMove()
     /**
@@ -182,9 +204,9 @@ var SGraphyPolygonItem = /** @class */ (function (_super) {
      * @return  boolean
      */
     SGraphyPolygonItem.prototype.onMouseUp = function (event) {
-        this.$emit('mouseUp', { item: this, event: event });
+        this.$emit('mouseUp', event);
         return true;
     };
     return SGraphyPolygonItem;
 }(SGraphyItem)); // Class SGraphyPolygonItem
-export { SGraphyPolygonItem };
+export default SGraphyPolygonItem;

+ 40 - 18
src/assets/graphy/SGraphy/newItems/SGraphyPolygonItem.ts

@@ -7,21 +7,22 @@ import { dataItemPath, dataItem, dataSpaceItem, dataInterface, PolygonItemInterf
  * 不规则多边形Item类
  *
  */
-export class SGraphyPolygonItem extends SGraphyItem {
+export default class SGraphyPolygonItem extends SGraphyItem {
 	pointArr: SPoint[];
 	fillColor: SColor = new SColor('#F2F6FC');
 	color: SColor = SColor.Black;
-	width: number = 0;
+	width: number = 200;
 	businessId: string | null;
 	id: string | null;
 	centerOfGravityPoint: { x: number, y: number };
 	businessName: null | string | undefined;    //业务空间名字
 	initName: null | string | undefined;        //空间名字
-	viewText: string = '111'                         //绘出的文案
+	viewText: string = ''                        //绘出的文案
 	isBusiness: number = 1;
 	cacheColor: SColor = SColor.Black             //需要缓存的边框
 	cacheFillColor: SColor = new SColor('#F2F6FC');        //需要缓存的填充色
-	cacheWidth: number = 0;
+	cacheWidth: number = 100;
+	businessType: string = ''													//类型
 	// actived: boolean = false; 				//是否激活
 	/**
 	 * 构造函数
@@ -33,7 +34,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 	 * @param businessId								空间id
 	 * @param businessName							空间名称
 	 * @param centerOfGravityPoint			中心点
-	 * @param isBusiness						    状态
+	 * @param isBusiness								状态
 	 * @param parent    
 	 */
 	constructor(PolygonItemData: PolygonItemInterface) {
@@ -43,26 +44,29 @@ export class SGraphyPolygonItem extends SGraphyItem {
 			return new SPoint(item.X, item.Y)
 		});
 		this.pointArr = newSpacePaths;
-		// // 填充色
-		PolygonItemData.fillColor ? this.fillColor = PolygonItemData.fillColor : this.fillColor = new SColor('#F2F6FC');
+		// 填充色
+		this.fillColor = PolygonItemData.space.fillColor ? PolygonItemData.space.fillColor : new SColor('#F2F6FC');
 		// 边框色
-		PolygonItemData.color ? this.color = PolygonItemData.color : this.color = SColor.Black;
+		this.color = PolygonItemData.space.color ? PolygonItemData.space.color : SColor.Black;
 		//边框宽度
-		PolygonItemData.width ? this.width = PolygonItemData.width : this.width = 0;
+		this.width = PolygonItemData.space.width ? PolygonItemData.space.width : 100;
 		//中心点
 		this.centerOfGravityPoint = {
 			x: PolygonItemData.space.LocationPoint.X,
-			y: PolygonItemData.space.LocationPoint.Y * (-1)
+			y: -PolygonItemData.space.LocationPoint.Y
 		};
 		//业务空间类型
-		this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : this.isBusiness = 1;
+		this.isBusiness = PolygonItemData.space.isBusiness ? PolygonItemData.space.isBusiness : 1;
 		//业务空间id
-		PolygonItemData.businessId ? this.businessId = PolygonItemData.businessId : this.businessId = null;
+		this.businessId = PolygonItemData.space.businessId ? PolygonItemData.space.businessId : null
 		//业务空间名称
 		this.businessName = PolygonItemData.space.Name;
 		this.initName = PolygonItemData.space.Name;
 		// 空间id
 		this.id = PolygonItemData.space.id;
+		this.viewText = PolygonItemData.space.Name;
+		//类型
+		this.businessType = PolygonItemData.businessType ? PolygonItemData.businessType : ''
 	}
 
 	/**
@@ -132,6 +136,17 @@ export class SGraphyPolygonItem extends SGraphyItem {
 		return nCross % 2 === 1
 	}
 	/**
+	 * 
+	 * @param text 修改的文字
+	 * @param centerOfGravityPoint 文字的坐标
+	 */
+	addText(text: string, centerOfGravityPoint?: { x: number, y: number }) {
+		this.viewText = text;
+		if (centerOfGravityPoint) {
+			this.centerOfGravityPoint = centerOfGravityPoint
+		}
+	}
+	/**
 	 * Item绘制操作
 	 *
 	 * @param   painter       painter对象
@@ -142,14 +157,21 @@ export class SGraphyPolygonItem extends SGraphyItem {
 			painter.pen.color = this.color;
 			painter.brush.color = this.fillColor;
 			painter.pen.lineWidth = this.width;
-			painter.drawPolygon(this.pointArr);
+			painter.drawPolygon(this.pointArr)
+			// let text = ''
+			// if (this.businessName || this.businessId) {
+			// 	text = '👇   ' + this.businessName
+			// } else {
+			// 	text = '⬇️   ' + this.initName
+			// }
 			painter.font.size = this.scale * 200;
 			painter.brush.color = SColor.Black;
+			// painter.drawText(text,this.centerOfGravityPoint.x,this.centerOfGravityPoint.y)
 			painter.drawText(this.viewText, this.centerOfGravityPoint.x, this.centerOfGravityPoint.y)
 		}
 	}
 	onClick(event: SMouseEvent): boolean {
-		this.$emit('click', event);
+		this.$emit('click', { item: this, event: event });
 		return true;
 	} // Function onClick()
 	/**
@@ -159,7 +181,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
   * @return  boolean
   */
 	onDoubleClick(event: SMouseEvent): boolean {
-		this.$emit('doubleClick', { item: this, event: event });
+		this.$emit('doubleClick', event);
 		return true;
 	}
 	/**
@@ -169,7 +191,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
   * @return  boolean
   */
 	onMouseDown(event: SMouseEvent): boolean {
-		this.$emit('mouseDown', { item: this, event: event });
+		this.$emit('mouseDown', event);
 		return true;
 	} // Function onMouseDown()
 
@@ -180,7 +202,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 	 * @return  boolean
 	 */
 	onMouseMove(event: SMouseEvent): boolean {
-		this.$emit('mouseMove', { item: this, event: event });
+		this.$emit('mouseMove', event);
 		return true;
 	} // Function onMouseMove()
 
@@ -191,7 +213,7 @@ export class SGraphyPolygonItem extends SGraphyItem {
 	 * @return  boolean
 	 */
 	onMouseUp(event: SMouseEvent): boolean {
-		this.$emit('mouseUp', { item: this, event: event });
+		this.$emit('mouseUp', event);
 		return true;
 	}
 

+ 25 - 0
src/assets/graphy/SGraphy/until/pako.js

@@ -0,0 +1,25 @@
+// import pako from 'pako'
+var pako = require('pako');
+var funcTo = atob;
+console.log(funcTo);
+var pakoObj = {
+    unzip: function unzip(b64Data) {
+        // console.log(b64Data)
+        var strData = funcTo(b64Data);
+        // Convert binary string to character-number array
+        var charData = strData.split('').map(function (x) { return x.charCodeAt(0); });
+        // console.log("charData", charData)
+        // Turn number array into byte-array
+        var binData = new Uint8Array(charData);
+        // // unzip
+        var data = pako.inflate(binData, { to: 'string' });
+        return eval("(" + data + ")");
+    },
+    // 压缩
+    zip: function (str) {
+        //escape(str)  --->压缩前编码,防止中午乱码
+        var binaryString = pako.gzip(escape(str), { to: 'string' });
+        return binaryString;
+    }
+};
+export default pakoObj;

+ 27 - 0
src/assets/graphy/SGraphy/until/pako.ts

@@ -0,0 +1,27 @@
+// import pako from 'pako'
+let pako = require('pako');
+let funcTo = atob
+console.log(funcTo)
+
+const pakoObj = {
+    unzip: function unzip(b64Data:any) {
+        // console.log(b64Data)
+        var strData = funcTo(b64Data);
+        // Convert binary string to character-number array
+        var charData = strData.split('').map(function(x) { return x.charCodeAt(0); });
+        // console.log("charData", charData)
+        // Turn number array into byte-array
+        var binData = new Uint8Array(charData);
+        // // unzip
+        var data = pako.inflate(binData, { to: 'string' });
+        return eval("(" + data + ")");
+    },
+    // 压缩
+    zip: function(str:any) {
+        //escape(str)  --->压缩前编码,防止中午乱码
+        var binaryString = pako.gzip(escape(str), { to: 'string' });
+        return binaryString;
+    }
+}
+
+export default pakoObj

+ 22 - 0
src/assets/graphy/SGraphy/until/tool.js

@@ -0,0 +1,22 @@
+var tools = {
+    changeMap: function (arr, k, name) {
+        var data = arr.map(function (items) {
+            if (items[name] && items[name].length) {
+                items[name].map(function (children) {
+                    if (Array.isArray(children)) {
+                        return children.map(function (res) {
+                            res.Y = res.Y * k;
+                            return res;
+                        });
+                    }
+                    else {
+                        children.Y = children.Y * k;
+                        return children;
+                    }
+                });
+            }
+        });
+        return data;
+    }
+};
+export default tools;

+ 21 - 0
src/assets/graphy/SGraphy/until/tool.ts

@@ -0,0 +1,21 @@
+let tools = {
+    changeMap(arr: any, k: any, name: any) {
+        let data = arr.map((items: any) => {
+            if (items[name] && items[name].length) {
+                items[name].map((children: any) => {
+                    if (Array.isArray(children)) {
+                        return children.map(res => {
+                            res.Y = res.Y * k
+                            return res
+                        })
+                    } else {
+                        children.Y = children.Y * k
+                        return children
+                    }
+                })
+            }
+        })
+        return data
+    }
+}
+export default tools

+ 8 - 7
src/assets/graphy/index.js

@@ -1,13 +1,14 @@
-import SGraphyView from './SGraphy/SGraphyView'
-import SGraphyScene from './SGraphy/SGraphyScene'
-import SGraphyClockItem from './SGraphy/items/SGraphyClockItem'
-import SGraphyRectItem from './SGraphy/items/SGraphyRectItem'
-import SGraphyLineItem from './SGraphy/items/SGraphyLineItem'
-import SGraphyPolygonItem from './SGraphy/items/SGraphyPolygonItem'
+
+import SGraphyPolygonItem from './SGraphy/newItems/SGraphyPolygonItem.js'
 import SGraphyCircleItem from './SGraphy/items/SGraphyCircleItem'
 import SGraphyImageItem from './SGraphy/items/SGraphyImageItem'
 import SGraphyPillarItems from './SGraphy/items/SGraphyPillarItems'
 import SGraphyTextItems from './SGraphy/items/SGraphyTextItems'
 import SGraphyVirtualItem from './SGraphy/items/SGraphyVirtualItem'
 import mainScene from './SGraphy/mainScene.js'
-export {mainScene,SGraphyView, SGraphyScene, SGraphyClockItem, SGraphyRectItem, SGraphyLineItem, SGraphyPolygonItem, SGraphyCircleItem, SGraphyImageItem, SGraphyPillarItems, SGraphyTextItems, SGraphyVirtualItem }
+import SGraphyRectItem from './SGraphy/newItems/SGraphyRectItem.js' 
+
+import SGraphyView from './SGraphy/SGraphyView';
+import SGraphyScene from './SGraphy/SGraphyScene'
+import SGraphyLineItem from './SGraphy/items/SGraphyLineItem'
+export {SGraphyView,SGraphyScene,SGraphyLineItem,mainScene,SGraphyRectItem, SGraphyPolygonItem, SGraphyCircleItem, SGraphyImageItem, SGraphyPillarItems, SGraphyTextItems, SGraphyVirtualItem }