浏览代码

Merge branch 'master' of http://39.106.8.246:3003/web/persagy-web

haojianlong 4 年之前
父节点
当前提交
b745b39f30

+ 9 - 9
persagy-web-big/src/config/ItemColor.ts

@@ -44,19 +44,19 @@ export class ItemColor {
     static doorColor = new SColor("#f5b36f");
     /** 窗户颜色 */
     static windowColor = new SColor("#fcd6ff");
-    /** 蒙版颜色    */
+    /** 蒙版颜色 */
     static sceneMarkColor = new SColor("#00000080");
-    /** 遮罩颜色    */
+    /** 遮罩颜色 */
     static shadeColor = new SColor("#00000080");
-    /** 高亮item吸附点颜色    */
+    /** 高亮item吸附点颜色 */
     static highLightPointColor = new SColor("#ff8d00");
-    /** 高亮item吸附线颜色    */
+    /** 高亮item吸附线颜色 */
     static highLightLineColor = new SColor("#409EFF");
-    /** 矩形选择对象边框颜色  */
+    /** 矩形选择对象边框颜色 */
     static rectSelectOutColor = new SColor("#3e78f9e8");
-    /** 矩形选择对象填充颜色  */
+    /** 矩形选择对象填充颜色 */
     static rectSelectInColor = new SColor("#8cf2fd73");
-    /** 空间边框颜色  */
+    /** 空间边框颜色 */
     static spaceBorderColor = new SColor("#2b2b2b");
     /** 空间,业务空间选中颜色 */
     static selectColor = new SColor("#1abc9c");
@@ -66,6 +66,6 @@ export class ItemColor {
     static zoneUnselectColor = new SColor("#cecece");
     /** 受影响业务空间颜色 */
     static zoneInfectedColor = new SColor("#ff0000");
-    /** 受影响的业务空间边框颜色    */
+    /** 受影响的业务空间边框颜色 */
     static zoneInfectedBorder = new SColor("#e2675c");
-} // Interface ItemColor
+} // Class ItemColor

+ 3 - 3
persagy-web-big/src/config/ItemOrder.ts

@@ -25,7 +25,7 @@
  */
 
 /**
- * 接口
+ * item层级类
  *
  * @author  郝建龙
  */
@@ -58,7 +58,7 @@ export class ItemOrder {
     static textOrder = 8000;
     /** 位置标签对象层级 */
     static markOrder = 9900;
-    /** 遮罩层级    */
+    /** 遮罩层级 */
     static shadeOrder = 12000;
     /** 框选矩形对象层级 */
     static rectSelectOrder = 9999900;
@@ -68,4 +68,4 @@ export class ItemOrder {
     static RelationOrder = 999900;
     /** 蒙版层级 */
     static sceneMarkOrder = 9999900;
-} // Interface ItemOrder
+} // Class ItemOrder

+ 1 - 1
persagy-web-big/src/config/Transparency.ts

@@ -25,7 +25,7 @@
  */
 
 /**
- * 透明度接口
+ * 透明度索引对应
  *
  * @author  郝建龙
  */

+ 5 - 5
persagy-web-big/src/items/floor/SBoardItem.ts

@@ -30,23 +30,23 @@ import { ItemColor, ItemOrder } from "../..";
 import { SGraphItem } from "@persagy-web/graph/lib";
 
 /**
- * 业务空间item
+ * 建築輪廓item
  *
  * @author  郝建龙
  */
 export class SBoardItem extends SGraphItem {
-    /** 空间所有数据  */
+    /** 空间所有数据 */
     data: Zone;
-    /** 空间轮廓线坐标list  */
+    /** 空间轮廓线坐标list */
     readonly pointArr: SPoint[][][] = [];
-    /** path    */
+    /** path */
     private pathList: SPath2D[] = [];
 
     /**
      * 构造函数
      *
      * @param parent    指向父对象
-     * @param data      空间数据
+     * @param data      建築輪廓数据
      */
     constructor(parent: SGraphItem | null, data: Zone) {
         super(parent);