yx 4 anos atrás
pai
commit
fbd7f57f7d

+ 3 - 0
src/components/baseEditer.vue

@@ -747,6 +747,9 @@ export default {
             bus.$on('changeInfoItemCode', (Code) => {
                 this.scene.updateInfoItemCode(Code)
             })
+            bus.$on('changeInfoProperties', (Properties) => {
+                this.scene.updateInfoProperties(Properties)
+            })
             /** ---------------------信息点Item属性修改--------------------- */
 
             // 改变图例名称

+ 21 - 0
src/components/edit/attrInfo.vue

@@ -6,6 +6,22 @@
             <a-input v-model='infoData.Name' style='width: 180px' @change='changeInfoName' />
         </div>
         <div class='row'>
+            <div class='row-tit'>字号</div>
+            <div class='grid-content'>
+                <a-input-number v-model='infoData.Properties.FontSize' @change='changeInfoProperties' :min='1' :max='100' style='width: 128px' />
+            </div>
+            <div class='color-choice'>
+                <swatches v-model='infoData.Properties.Color' popover-x='left' @close='changeInfoProperties' />
+            </div>
+        </div>
+        <div class='row'>
+            <div class='row-tit'>背景色</div>
+            <div class='color-choice '>
+                <swatches v-model='infoData.Properties.Background'  :swatches="swatches" popover-x='left' @close='changeInfoProperties' />
+            </div>
+        </div>
+        <a-divider />
+        <div class='row'>
             <div class='row-tit'>信息点Code</div>
             <a-input v-model='infoData.Code' style='width: 180px' @change='changeInfoCode' />
         </div>
@@ -44,6 +60,7 @@ export default {
         return {
             infoData: {},
             AttachObjectIds: [], //工程信息化对象 ID 列表
+            swatches: ['#00000000', '#1FBC9C', '#1CA085', '#2ECC70', '#27AF60', '#3398DB', '#2980B9', '#A463BF', '#8E43AD', '#3D556E', '#222F3D'],
         }
     },
 
@@ -83,6 +100,9 @@ export default {
         changeInfoCode() {
             bus.$emit('changeInfoItemCode', this.infoData.Code)
         },
+        changeInfoProperties() {
+            bus.$emit('changeInfoProperties', this.infoData.Properties)
+        },
         changeInfoAttachObjectIds(index) {},
     },
 }
@@ -108,6 +128,7 @@ export default {
             & /deep/ .vue-swatches__trigger {
                 width: 26px !important;
                 height: 26px !important;
+                border: 1px solid #aeaeae;
                 border-radius: 0px !important;
             }
         }

+ 19 - 1
src/components/mapClass/EditScence.ts

@@ -468,7 +468,7 @@ export class EditScence extends SGraphScene {
             Size: { Width: 100, Height: 25 },
             /** 由应用自己定义  */
             Properties: {
-                FontSize: 12,
+                FontSize: 14,
                 Color: "#646c73",
                 Background: "#f7f9facc"
             },
@@ -2099,4 +2099,22 @@ export class EditScence extends SGraphScene {
             this.scenceUpdate(this);
         }
     }
+    /**
+     * @description 更新信息点item的 Properties
+     * @param Properties 信息点item的 Properties
+     */
+    updateInfoProperties(Properties: object) {
+        let { Color, FontSize, Background } = Properties
+        console.log(this.focusItem)
+        console.log(Color, FontSize, Background)
+        if (this.focusItem) {
+            this.focusItem.Properties = Properties;
+            let font = new SFont(this.focusItem.font);
+            font.size = FontSize;
+            this.focusItem.font = font
+            this.focusItem.color = Color;
+            this.focusItem.backgroundColor = new SColor(Background);
+            this.scenceUpdate(this);
+        }
+    }
 }

+ 3 - 1
src/lib/items/SInfoItem.ts

@@ -13,6 +13,7 @@ export class SInfoItem extends STextItem {
     data: Info;
     // 工程信息化对象列表
     AttachObjectIds: string[] = [];
+    Properties: object = {}
     Code: string = '';
     /**
      * 构造函数
@@ -30,6 +31,7 @@ export class SInfoItem extends STextItem {
         this.name = data.Name;
         this.text = data.Name
         this.AttachObjectIds = data.AttachObjectIds
+        this.Properties = data.Properties
         this.moveTo(data.Pos.X, data.Pos.Y);
         if (data.Size) {
             this.width = data.Size.Width;
@@ -54,7 +56,7 @@ export class SInfoItem extends STextItem {
         this.data.Pos = { X: this.x, Y: this.y };
         this.data.Size = { Width: this.width, Height: this.height };
         this.data.Properties.Color = this.color.value;
-        this.data.Properties.Font = this.font.size;
+        this.data.Properties.FontSize = this.font.size;
         this.data.Properties.Background = this.backgroundColor.value;
         return this.data;
     }