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