Browse Source

Merge branch 'develop' of http://39.106.8.246:3003/web/wanda-editer into develop

YaolongHan 4 years ago
parent
commit
79bc7c97d5

File diff suppressed because it is too large
+ 414 - 414
package-lock.json


+ 4 - 4
package.json

@@ -8,11 +8,11 @@
     "lint": "vue-cli-service lint"
   },
   "dependencies": {
-    "@saga-web/base": "2.1.21",
-    "@saga-web/big": "1.0.46",
-    "@saga-web/draw": "2.1.97",
+    "@saga-web/base": "2.1.22",
+    "@saga-web/big": "1.0.48",
+    "@saga-web/draw": "2.1.98",
     "@saga-web/feng-map": "1.0.11",
-    "@saga-web/graph": "2.1.90",
+    "@saga-web/graph": "2.1.91",
     "@saga-web/topology": "1.0.84",
     "ant-design-vue": "^1.6.0",
     "core-js": "^3.6.4",

+ 1 - 0
src/components/baseEditer.vue

@@ -165,6 +165,7 @@ export default {
               t.selectable = true;
               this.scene.addItem(t);
             });
+            this.scene.spaceList = this.fParser.spaceList;
             this.fParser.wallList.forEach(t => this.scene.addItem(t));
             this.fParser.virtualWallList.forEach(t => this.scene.addItem(t));
             this.fParser.doorList.forEach(t => this.scene.addItem(t));

+ 16 - 3
src/components/edit/attr_select.vue

@@ -60,7 +60,7 @@
       <div class="row">
         <div class="row-tit">背景色</div>
         <div class="color-choice">
-          <swatches v-model="backColor" popover-x="left" @close="changebackColor" />
+          <swatches v-model="backColor" :swatches="swatches" popover-x="left" @close="changebackColor" />
         </div>
       </div>
     </div>
@@ -356,6 +356,19 @@ export default {
         Zone: "编辑区域"
       },
       swatchess: ["#69C5FC", "#656EDF", "#58AF6F", "#2D8FAA"],
+      swatches: [
+          "#00000000",
+          "#1FBC9C",
+          "#1CA085",
+          "#2ECC70",
+          "#27AF60",
+          "#3398DB",
+          "#2980B9",
+          "#A463BF",
+          "#8E43AD",
+          "#3D556E",
+          "#222F3D",
+      ],
       lengedName: "", // 图例名称
       imageNum: 1, //设备数量
       fillColor: "", //修改填充色 (主要针对防火风区以及石材铺装)
@@ -459,8 +472,8 @@ export default {
         if (newval.itemType == "baseText") {
           this.textMsg = Item.text;
           this.fontSize = Item.font.size;
-          this.fontColor = Item.color;
-          this.backColor = Item.backgroundColor;
+          this.fontColor = Item.color.value;
+          this.backColor = Item.backgroundColor.value;
         } else if (newval.itemType == "baseLine") {
           this.lineWidth = Item.lineWidth;
           this.borderColor = Item.strokeColor;

+ 36 - 5
src/components/edit/left_toolbar.vue

@@ -56,9 +56,9 @@
       </li>
     </ul>
 
-    <a-popover trigger="click" placement="rightBottom">
+    <a-popover trigger="click" placement="rightBottom" v-model="drawerVisible" >
       <template slot="content">
-        <itemTree></itemTree>
+        <itemTree @getSelectId="getSelectId" :categoryIdS="categoryIdS" :key="new Date().getTime()" :categoryId="categoryId"></itemTree>
       </template>
       <div class="bottom-item">
         <a-icon type="ellipsis" />
@@ -69,6 +69,7 @@
     <!-- 打开弹窗 -->
     <transition name="fade">
       <div class="drawer-model" id="drawer-model" v-show="visible">
+
         <a-drawer
           placement="left"
           :closable="false"
@@ -78,6 +79,7 @@
           :getContainer="false"
           :mask="false"
         >
+          <a-spin :spinning="spinning">
           <div class="drawer-model-body" v-if="!isExtract">
             <div class="btn-list">
               <a-radio-group default-value="draw" button-style="solid" @change="changeDrawType">
@@ -117,7 +119,9 @@
               >{{ text }}</a-tag>
             </a-table>
           </div>
+          </a-spin>
         </a-drawer>
+
       </div>
     </transition>
   </div>
@@ -251,8 +255,12 @@ export default {
       data,
       columns,
       itemList: [], //图例数组
+      categoryIdS: [],
       categoryId: "",
-      activeIndex: -1
+      activeIndex: -1,
+      drawerVisible:false,
+      spinning:false,
+      showDrawerItem:{}
     };
   },
   computed: {
@@ -281,6 +289,7 @@ export default {
       this.$emit("setCmdType", item.type);
     },
     showDrawer(item) {
+      this.showDrawerItem = item;
       this.isExtract = false;
       if (item.isChoice) {
         this.systemChoice.forEach(a => {
@@ -302,15 +311,21 @@ export default {
         }
         // 打开侧边框
         // 接口请求
+        this.spinning = true;
         const arr = {
-          GraphCategoryIds: this.categoryId,
+          GraphCategoryIds: this.categoryIdS,
           Type: item.type
         };
         queryGroup(arr).then(res => {
+          this.spinning = false;
           this.itemList = res.Data;
         });
       }
     },
+    getSelectId(data){
+      this.categoryIdS=data;
+      this.drawerVisible = false;
+    },
     onClose() {
       this.visible = false;
       this.systemChoice.forEach(a => {
@@ -351,6 +366,11 @@ export default {
           item.isChoice = true;
         }
       });
+    },
+    drawerVisible(val){
+      if(this.visible){
+        this.showDrawer(this.showDrawerItem);
+      }
     }
   },
   mounted() {
@@ -378,10 +398,21 @@ export default {
       obj[arr[0]] = arr[1];
     });
     this.categoryId = obj.categoryId;
+    this.categoryIdS.push(obj.categoryId)
   }
 };
 </script>
-<style lang="less">
+<style lang="less" scoped>
+  /deep/ .ant-spin-nested-loading{
+    height: 100% !important;
+    .ant-spin-container{
+      height: 100% !important;
+
+    }
+  }
+  /deep/ .ant-drawer-body{
+    height: 100% !important;
+  }
 #left_toolbar {
   min-width: 68px;
   height: 100%;

+ 29 - 5
src/components/edit/leftbar_components/itemTree.vue

@@ -1,6 +1,7 @@
 <template>
   <div class="treeList">
     <div class="tree-body">
+      <a-spin :spinning="spinning">
       <a-tree
         v-model="checkedKeys"
         show-checkbox
@@ -14,12 +15,13 @@
         @select="onSelect"
         @check="onCheck"
       />
+      </a-spin>
     </div>
 
     <div class="btn-list">
-      <a-button type="link">恢复默认</a-button>
-      <a-button>取消</a-button>
-      <a-button type="primary">按钮</a-button>
+      <a-button type="link" @click="getSelectId('rest')">恢复默认</a-button>
+      <a-button @click="getSelectId('cancel')">取消</a-button>
+      <a-button type="primary" @click="getSelectId(checkedKeys)" style="margin-left: 10px;">确定</a-button>
     </div>
   </div>
 </template>
@@ -33,12 +35,17 @@ export default {
       autoExpandParent: true,
       checkedKeys: ["1-1"],
       selectedKeys: [],
-      treeData
+      treeData,
+      spinning:false
     };
   },
+  props:{
+    categoryIdS:Array,
+    categoryId:String,
+  },
   watch: {
     checkedKeys(val) {
-      console.log("onCheck", val);
+      this.checkedKeys = val;
     }
   },
   methods: {
@@ -58,8 +65,11 @@ export default {
       this.selectedKeys = selectedKeys;
     },
     queryByGroup() {
+      this.spinning = true;
       queryByGroup().then(res => {
+        this.spinning = false;
         this.treeData = this.mapTree(res.Content);
+        this.checkedKeys = this.categoryIdS;
       });
     },
     mapTree(tree) {
@@ -70,17 +80,31 @@ export default {
           newTree.push({
             title: item.Name,
             id: item.Id,
+            key:item.Id,
             children
           });
         } else {
           newTree.push({
             title: item.Name,
             id: item.Id,
+            key:item.Id,
             children: []
           });
         }
       });
       return newTree;
+    },
+    //确定
+    getSelectId(data){
+      if(data == 'cancel'){
+        this.checkedKeys = this.categoryIdS;
+      }else if(data == 'rest'){
+        this.checkedKeys = [this.categoryId];
+      }else{
+        this.checkedKeys =data;
+      }
+
+      this.$emit('getSelectId',this.checkedKeys)
     }
   },
 

+ 14 - 14
src/components/edit/right_toolbar.vue

@@ -39,6 +39,8 @@
 <script>
 import attrSelect from "@/components/edit/attr_select";
 import bus from "@/bus";
+import { SImageMarkerItem } from '../../lib/items/SImageMarkerItem';
+import { SImageLegendItem } from '../../lib/items/SImageLegendItem';
 
 const msgList = [
   {
@@ -61,13 +63,13 @@ const msgList = [
   },
   {
     msg: "",
-    disable: false,
+    disable: true,
     name: "Width",
     unit: "w"
   },
   {
     msg: "",
-    disable: false,
+    disable: true,
     name: "Height",
     unit: "h"
   }
@@ -177,22 +179,20 @@ export default {
           if (item.name == "Width") {
             item.msg = Item.boundingRect().width;
             // 针对icon 以及图片
-            if (
-              Item.data &&
-              Item.data.GraphElementType &&
-              Item.data.GraphElementType == "Image"
-            ) {
-              item.msg = Item.width;
+            if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
+              item.disable = false;
+              // item.msg = Item.width;
+            } else {
+              item.disable = true;
             }
           }
           if (item.name == "Height") {
             item.msg = Item.boundingRect().height;
-            if (
-              Item.data &&
-              Item.data.GraphElementType &&
-              Item.data.GraphElementType == "Image"
-            ) {
-              item.msg = Item.height;
+            if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
+              item.disable = false;
+              // item.msg = Item.height;
+            } else {
+              item.disable = true;
             }
           }
         });

+ 214 - 6
src/components/mapClass/EditScence.ts

@@ -1,5 +1,5 @@
 import { SMouseEvent, SUndoStack } from "@saga-web/base";
-import { SGraphScene, SGraphLayoutType } from '@saga-web/graph/lib';
+import { SGraphScene, SGraphLayoutType, SAnchorItem } from '@saga-web/graph/lib';
 import { SFloorParser, SLineItem, SPolylineItem, SItemStatus, ItemOrder, STooltipItem } from "@saga-web/big";
 import { SGraphItem, SLineStyle, SImageItem, STextItem, SGraphPointListInsert, SGraphPointListDelete, SGraphPointListUpdate, SGraphAddCommand } from "@saga-web/graph/lib";
 import { SZoneLegendItem } from "@/lib/items/SZoneLegendItem";
@@ -7,9 +7,8 @@ import { SSCPZZoneLegendItem } from "@/lib/items/SSCPZZoneLegendItem";
 import { SFHFQZoneLegendItem } from "@/lib/items/SFHFQZoneLegendItem";
 import { SImageLegendItem } from "@/lib/items/SImageLegendItem";
 import { TipelineItem } from "@/lib/items/TipelineItem";
-import { SImgTextItem } from "@/lib/items/SImgTextItem";
 import { SImageMarkerItem } from "@/lib/items/SImageMarkerItem"
-import { SPoint, SFont, SColor } from '@saga-web/draw/lib';
+import { SPoint, SFont, SColor, SRect } from '@saga-web/draw/lib';
 import { Legend } from '@/lib/types/Legend';
 import { Relation } from '@/lib/types/Relation';
 
@@ -17,6 +16,9 @@ import { uuid } from "@/components/mapClass/until";
 import { STextMarkerItem } from '@/lib/items/STextMarkerItem';
 import { SLineMarkerItem } from '@/lib/items/SLineMarkerItem';
 import { SSpaceItem } from '@saga-web/big/lib/items/floor/SSpaceItem';
+import { SMathUtil } from '@saga-web/big/lib/utils/SMathUtil';
+import { MinDis } from '@saga-web/big/lib/types/MinDis';
+import { HighlightItem } from '@/lib/items/HighlightItem';
 /**
  * 在线绘图
  *
@@ -51,6 +53,11 @@ export class EditScence extends SGraphScene {
     /** 绘制区域时 是否为点选   */
     isSelecting: boolean = false;
 
+    /** 是否开启吸附  */
+    isAbsorbing: boolean = false;
+    /** 吸附展示item    */
+    highLight: HighlightItem | null = null;
+
     /** 当前选中焦点Item */
     focusItem: SGraphItem | null = null;
 
@@ -350,7 +357,7 @@ export class EditScence extends SGraphScene {
                 IconUrl: require(`../../assets/images/t-text-hover.png`),
                 Text: '请在右侧属性栏输入文字!',
                 Color: '',
-                Font: 0,
+                Font: 12,
                 BackgroundColor: ''
             }
         }
@@ -459,7 +466,7 @@ export class EditScence extends SGraphScene {
     updatedFontColor(color: string): void {
         if (this.focusItem) {
             let old = this.focusItem.color;
-            this.focusItem.color = color;
+            this.focusItem.color = new SColor(color);
             // this.undoStack.push(new SGraphPropertyCommand(this, this.focusItem, "color", old, color));
         }
     }
@@ -536,7 +543,7 @@ export class EditScence extends SGraphScene {
      */
     updatedbackColor(color: string): void {
         if (this.focusItem) {
-            this.focusItem.backgroundColor = color;
+            this.focusItem.backgroundColor = new SColor(color);
         }
     }
 
@@ -725,6 +732,15 @@ export class EditScence extends SGraphScene {
     ////////////////////////
     //  以下为鼠标键盘操作事件
     onMouseDown(event: SMouseEvent): any {
+        // 判断是否开启吸附,并且有吸附的点
+        if (
+            this.isAbsorbing &&
+            this.highLight &&
+            this.highLight.visible
+        ) {
+            event.x = this.highLight.point.x;
+            event.y = this.highLight.point.y;
+        }
         if (this.grabItem) {
             return this.grabItem.onMouseDown(event);
         }
@@ -757,6 +773,18 @@ export class EditScence extends SGraphScene {
         }
     }
 
+    onMouseMove(event: SMouseEvent):boolean {
+        if (this.isAbsorbing) {
+            if (!this.highLight) {
+                this.highLight = new HighlightItem(null);
+                this.addItem(this.highLight);
+            }
+            this.highLight.visible = false;
+            this.absorbSpace(event);
+        }
+        return super.onMouseMove(event)
+    }
+
     /**
      * 键盘事件
      *
@@ -772,4 +800,184 @@ export class EditScence extends SGraphScene {
         // }
         return false
     }
+
+    /**
+     *  划线时点击位置是否是锚点
+     *
+     *  @param  event   事件
+     *  @param  len     限制距离
+     *  @return 点击的锚点
+     * */
+    clickIsAnchor(event: SMouseEvent): SAnchorItem | null {
+        let minAnchor = null;
+        let len: number = -1;
+        this.Nodes.forEach(image => {
+            if (image.anchorList && image.anchorList.length) {
+                image.anchorList.forEach(anchor => {
+                    console.log(anchor)
+                    let anchorPoint = anchor.mapToScene(0, 0);
+                    let dis = SMathUtil.pointDistance(
+                        event.x,
+                        event.y,
+                        anchorPoint.x,
+                        anchorPoint.y
+                    );
+                    if (len < 0) {
+                        len = anchor.sceneDis;
+                    }
+                    if (dis < len) {
+                        minAnchor = anchor;
+                        len = dis;
+                    }
+                })
+            }
+        })
+        console.log('-----------------------')
+        console.log(minAnchor)
+        return minAnchor;
+    }
+
+   /**
+     *  点是否在吸附区域内
+     *
+     *  @param  p       要判断的点
+     *  @param  minX    空间区域
+     *  @param  minY    空间区域
+     *  @param  maxX    空间区域
+     *  @param  maxY    空间区域
+     */
+    static isPointInAbsorbArea(
+        p: SPoint,
+        minX: number,
+        maxX: number,
+        minY: number,
+        maxY: number
+    ): boolean {
+        let rect = new SRect(
+            minX - 1000,
+            minY - 1000,
+            maxX - minX + 2000,
+            maxY - minY + 2000
+        );
+        return rect.contains(p.x, p.y);
+    } // Function isPointInAbsorbArea()
+
+    /**
+     *  吸附空间
+     *
+     *  @param  event   鼠标事件对象
+     *  @return boolean 是否找到吸附的对象
+     */
+    absorbSpace(event: SMouseEvent): boolean {
+        if (!this.highLight) {
+            return false;
+        }
+        let absorbLen = 1000;
+        if (this.view) {
+            absorbLen = 10 / this.view.scale;
+        }
+        let P = this.absorbSpacePoint(event, absorbLen);
+        if (P.Point) {
+            this.highLight.distance = P.MinDis;
+            this.highLight.point = new SPoint(P.Point.X, -P.Point.Y);
+            this.highLight.visible = true;
+            return true;
+        } else {
+            let L = this.absorbSpaceLine(event, absorbLen);
+            if (L.Line && L.Point) {
+                this.highLight.distance = L.MinDis;
+                this.highLight.point = L.Point;
+                this.highLight.line = L.Line;
+                this.highLight.visible = true;
+                return true;
+            }
+            return false;
+        }
+    } // Function absorbSpace()
+
+    /**
+     *  吸附空间点
+     *
+     *  @param  event       鼠标事件对象
+     *  @param  absorbLen   吸附距离
+     *  @return MinDis      吸附的点
+     */
+    absorbSpacePoint(event: SMouseEvent, absorbLen: number): MinDis {
+        let minPointDis = Number.MAX_SAFE_INTEGER;
+        let Point;
+        this.spaceList.map((space): void => {
+            if (
+                EditScence.isPointInAbsorbArea(
+                    new SPoint(event.x, event.y),
+                    space.minX,
+                    space.maxX,
+                    space.minY,
+                    space.maxY
+                )
+            ) {
+                space.data.OutLine.forEach((item): void => {
+                    let minDis = SMathUtil.getMinDisPoint(
+                        new SPoint(event.x, event.y),
+                        item
+                    );
+                    if (
+                        minDis &&
+                        minDis.MinDis < absorbLen &&
+                        minDis.MinDis < minPointDis
+                    ) {
+                        minPointDis = minDis.MinDis;
+                        Point = minDis.Point;
+                    }
+                });
+            }
+        });
+        return {
+            MinDis: minPointDis,
+            Point: Point
+        };
+    } // Function absorbSpacePoint()
+
+    /**
+     *  吸附空间线
+     *
+     *  @param  event       鼠标事件对象
+     *  @param  absorbLen   吸附距离
+     *  @return PointToLine 吸附的线
+     */
+    absorbSpaceLine(event: SMouseEvent, absorbLen: number): PointToLine {
+        let minPointDis = Number.MAX_SAFE_INTEGER;
+        let Point, Line;
+        this.spaceList.forEach((space): void => {
+            if (
+                EditScence.isPointInAbsorbArea(
+                    new SPoint(event.x, event.y),
+                    space.minX,
+                    space.maxX,
+                    space.minY,
+                    space.maxY
+                )
+            ) {
+                space.data.OutLine.forEach((item): void => {
+                    let minDisLine = SMathUtil.getMinDisLine(
+                        new SPoint(event.x, event.y),
+                        item
+                    );
+                    if (
+                        minDisLine &&
+                        minDisLine.MinDis < absorbLen &&
+                        minDisLine.MinDis < minPointDis
+                    ) {
+                        minPointDis = minDisLine.MinDis;
+                        Point = minDisLine.Point;
+                        Line = minDisLine.Line;
+                    }
+                });
+            }
+        });
+        return {
+            MinDis: minPointDis,
+            Point: Point,
+            Line: Line
+        };
+    } // Function absorbSpaceLine()
 }

+ 93 - 0
src/lib/items/HighlightItem.ts

@@ -0,0 +1,93 @@
+/*
+ * ********************************************************************************************************************
+ *
+ *                      :*$@@%$*:                         ;:                ;;    ;;
+ *                    :@@%!  :!@@%:                       %!             ;%%@@%$ =@@@@@@@%;     @%@@@%%%%@@@@@
+ *                   :@%;       :$=                       %%$$$%$$         ;$$  ;$@=   !@$
+ *                   =@!                                  %!              @ $=;%   !@@@%:      !$$$$$$$$$$$$$$=
+ *                   =@*                                  %!              @ $= % %@=   =%@!      %=
+ *              *$%%! @@=        ;=$%%%$*:                %!              @ $= % =%%%%%%@$      *%:         =%
+ *            %@@!:    !@@@%=$@@@@%!  :*@@$:              %!              @ $= % $*     ;@      @*          :%*
+ *          ;@@!          ;!!!;:         ;@%:      =======@%========*     @ $$ % $%*****$@     :@$=*********=@$
+ *          $@*   ;@@@%=!:                *@*
+ *          =@$    ;;;!=%@@@@=!           =@!
+ *           %@$:      =@%: :*@@@*       %@=                    Copyright (c) 2016-2019.  北京上格云技术有限公司
+ *            ;%@@$=$@@%*       *@@@$=%@@%;
+ *               ::;::             ::;::                                              All rights reserved.
+ *
+ * ********************************************************************************************************************
+ */
+
+import { SGraphItem } from "@saga-web/graph/lib";
+import { SColor, SLine, SPainter, SPoint, SRect } from "@saga-web/draw/lib";
+import { ItemOrder, ItemColor } from '@saga-web/big/lib';
+
+/**
+ * 吸附时高亮对象
+ *
+ * @author  郝建龙
+ */
+export class HighlightItem extends SGraphItem {
+    /** 对象与鼠标位置距离   */
+    distance: number = 0;
+    /** 对象类型   */
+    private type: number = 1;
+
+    /** 点对象数据-当吸附的为线时,此点为垂线与线段的交点   */
+    _point: SPoint = new SPoint();
+    get point(): SPoint {
+        return this._point;
+    } // Get point
+    set point(v: SPoint) {
+        this._point = v;
+        this.type = 1;
+        this.update();
+    } // Set point
+
+    /** 点对象数据   */
+    _line: SLine = new SLine();
+    get line(): SLine {
+        return this._line;
+    } // Get line
+    set line(v: SLine) {
+        this._line = v;
+        this.type = 2;
+        this.update();
+    } // Set line
+
+    /**
+     * 构造函数
+     *
+     * @param   parent  指向父对象
+     */
+    constructor(parent: SGraphItem | null) {
+        super(parent);
+        this.visible = false;
+        this.zOrder = ItemOrder.highLightOrder;
+    } // Constructor
+
+    /**
+     * Item对象边界区域
+     *
+     * @return	SRect
+     */
+    boundingRect(): SRect {
+        return new SRect(this.point.x, this.point.y, 10, 10);
+    } // Function boundingRect()
+
+    /**
+     * Item绘制操作
+     *
+     * @param   painter painter对象
+     */
+    onDraw(painter: SPainter): void {
+        if (this.type == 2) {
+            painter.pen.color = ItemColor.highLightLineColor;
+            painter.pen.lineWidth = painter.toPx(6);
+            painter.drawLine(this.line);
+        }
+        painter.pen.color = SColor.Transparent;
+        painter.brush.color = ItemColor.highLightPointColor;
+        painter.drawCircle(this.point.x, this.point.y, painter.toPx(5));
+    } // Function onDraw()
+} // Class HighlightItem

+ 5 - 59
src/lib/items/STextMarkerItem.ts

@@ -12,25 +12,6 @@ export class STextMarkerItem extends STextItem {
     /** 标识对象数据 */
     data: Marker;
 
-    /** 边框宽度 */
-    private _lineWidth: number = 1;
-    get lineWidth(): number {
-        return this._lineWidth;
-    }
-    set lineWidth(v: number) {
-        this._lineWidth = v;
-        this.update();
-    }
-
-    /** 边框样式    */
-    private _borderStyle: SLineStyle = SLineStyle.None;
-    get borderStyle(): SLineStyle {
-        return this._borderStyle;
-    }
-    set borderStyle(v: SLineStyle) {
-        this._borderStyle = v;
-        this.update();
-    }
     /**
      * 构造函数
      *
@@ -52,13 +33,13 @@ export class STextMarkerItem extends STextItem {
             this.text = data.Properties.Text;
         }
         if (data.Properties && data.Properties.Color) {
-            this.color = data.Properties.Color
+            this.color = new SColor(data.Properties.Color);
         }
         if (data.Properties && data.Properties.Font) {
             this.font = new SFont("sans-serif", data.Properties.Font);;
         }
         if (data.Properties && data.Properties.BackgroundColor) {
-            this.backgroundColor = data.Properties.BackgroundColor
+            this.backgroundColor = new SColor(data.Properties.BackgroundColor);
         }
     } // Constructor
 
@@ -66,44 +47,9 @@ export class STextMarkerItem extends STextItem {
         this.data.Pos = {X: this.x, Y: this.y};
         this.data.Size = {Width: this.width, Height: this.height};
         this.data.Properties.Text = this.text;
-        this.data.Properties.Color = this.color;
-        this.data.Properties.Font = this.font.size
-        this.data.Properties.BackgroundColor = this.backgroundColor
+        this.data.Properties.Color = this.color.value;
+        this.data.Properties.Font = this.font.size;
+        this.data.Properties.BackgroundColor = this.backgroundColor.value;
         return this.data;
     }
-
-    /**
-     * Item绘制操作
-     *
-     * @param   painter      绘画类
-     */
-    onDraw(painter: SPainter): void {
-        // 绘制文本
-        painter.brush.color = new SColor(this.color);
-        painter.font = this.font;
-        this.drawFormatText(painter);
-        if (this.selected) {
-            this.borderStyle = SLineStyle.Dashed;
-        } else {
-            this.borderStyle = SLineStyle.None;
-        }
-        if (this.borderStyle == SLineStyle.Dashed) {
-            painter.pen.lineDash = [
-                painter.toPx(this.lineWidth * 3),
-                painter.toPx(this.lineWidth * 7)
-            ];
-            painter.brush.color = SColor.Transparent;
-            painter.drawRect(this.boundingRect());
-        } else if (this.borderStyle == SLineStyle.Dotted) {
-            painter.pen.lineDash = [
-                painter.toPx(this.lineWidth),
-                painter.toPx(this.lineWidth)
-            ];
-            painter.brush.color = SColor.Transparent;
-            painter.drawRect(this.boundingRect());
-        } else if (this.borderStyle == SLineStyle.Soild) {
-            painter.brush.color = SColor.Transparent;
-            painter.drawRect(this.boundingRect());
-        }
-    } // Function onDraw()
 } // Class STextMarkerItem