瀏覽代碼

'update_2020.12.16_20:42'

zhangyu 4 年之前
父節點
當前提交
e5af69849e

+ 38 - 7
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -54,7 +54,17 @@
                                 <el-color-picker show-alpha class="fix-box-1" v-model="color"></el-color-picker>
                             </div>
                         </div>
-                        <div class="base-property-item"></div>
+                        <div class="base-property-item" style="flex: 1;padding: 0;">
+                            <el-input-number
+                                style="width: 100%;"
+                                v-model="size"
+                                controls-position="right"
+                                size="mini"
+                                :min="1"
+                                :max="20"
+                                :maxlength="100"
+                            ></el-input-number>
+                        </div>
                     </div>
                 </div>
                 <div class="box-padding box-border-bottom">
@@ -77,7 +87,9 @@
     </div>
 </template>
 <script>
-import { SColor } from "@persagy-web/draw";
+import { mapMutations } from "vuex";
+import { SColor, SFont } from "@persagy-web/draw";
+import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
 import bus from "@/bus/bus";
 export default {
@@ -96,16 +108,27 @@ export default {
         };
     },
     computed: {
+
         color: {
             get: function () {
                 return this.EquipItem.color.toRgba();
             },
-            set: function () {
-                this.EquipItem.color = new SColor(this.color);
+            set: function (newColor) {
+                const colorList = rgbaNum(newColor);
+                this.EquipItem.color = new SColor(Number(colorList[0]), Number(colorList[1]), Number(colorList[2]), colorList[3] * 255);
+            },
+        },
+        size: {
+            get: function () {
+                return this.EquipItem.font.size;
+            },
+            set: function (newSize) {
+                this.EquipItem.font = new SFont("sans-serif", newSize);
             },
         },
     },
     methods: {
+        ...mapMutations(["ADDSTYLE"]),
         // 设置宽
         changeWidth(val) {
             bus.$emit("updateStyle", "sWidth", val);
@@ -118,6 +141,10 @@ export default {
         changeAnotherMsg(val) {
             bus.$emit("updateStyle", "anotherMsg", val);
         },
+        // 修改样式信息
+        setStyle() {
+            
+        },
         beforeAvatarUpload(file) {
             // eslint-disable-next-line @typescript-eslint/no-this-alias
             const fileReader = new FileReader();
@@ -222,6 +249,9 @@ export default {
     .box-border-bottom {
         border-bottom: 1px solid #e4e5e7;
     }
+    .flex {
+        flex: 1;
+    }
     /deep/ .el-tabs__item {
         padding: 0 20px !important;
     }
@@ -259,11 +289,12 @@ export default {
             }
         }
         .cololorSelect {
-            width: 32px;
-            height: 20px;
+            width: 36px;
+            height: 24px;
+            border-radius: 2px;
             overflow: hidden;
             position: relative;
-            margin: 4px 0;
+            
             .fix-box-1 {
                 margin-top: -8px;
                 margin-left: -8px;

+ 8 - 8
src/lib/item/SPlanEquipment.ts

@@ -122,9 +122,9 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         }
 
         this.id = this.legendData.id ? this.legendData.id : "";
-        // this.textItemList[0].text = this.legendData.codeName ? this.legendData.codeName : "";
+        this.textItemList[0].text = this.legendData.codeName ? this.legendData.codeName : "";
         this.showAnchor = false;
-        this.anotherMsg = this.legendData.properties?.anotherMsg ? this.legendData.properties.anotherMsg : "";
+        this.anotherMsg = this.legendData?.anotherMsg ? this.legendData.anotherMsg : "";
         this.x = this.legendData.pos.x;
         this.y = this.legendData.pos.y;
         this.moveable = true;
@@ -149,12 +149,12 @@ export class SPlanEquipment extends SBaseIconTextEdit {
     toData(): any {
         if (this.legendData) {
             // 位置
-            this.legendData.pos = {
-                x: this.x,
-                y: this.y,
-            };
-            this.legendData.properties.anotherMsg = this.anotherMsg;
-            return this.legendData;
+            const objExtInfo = {
+                id: this.id,
+                pos: this.pos,
+                anotherMsg: this.anotherMsg;
+            }
+            return objExtInfo;
         }
     }
 }

+ 2 - 0
src/lib/style/Example.ts

@@ -57,6 +57,8 @@ export interface Example {
     localId?: string;
     /** 实例本地名称 */
     localName?: string;
+    /** 实例附加数据 */
+    anotherMsg?: string;
     /** 图 id */
     graphId?: string;
     /** 图例实例 id */

+ 3 - 2
src/store/index.ts

@@ -31,7 +31,7 @@ export default new Vuex.Store({
         zoneIteMap: {}, // 图上相关的空间实例
         zoneItemNum: 0, // 图上相关的空间实例的数量
         styleMap: {}, // 样式库信息
-        objExtInfo: {}, // 设备位置信息
+        objExtInfo: {}, // 对象实例信息
     },
     mutations: {
         // 修改编辑器命令
@@ -98,7 +98,7 @@ export default new Vuex.Store({
             state.equipmentItemList = arr1;
             state.equipmentItemNum = state.equipmentItemList.length;
         },
-        // 初始化设备位置信息
+        // 初始化对象实例信息
         INITOBJEXTINFO(state, data) {
             state.objExtInfo = data;
         },
@@ -120,6 +120,7 @@ export default new Vuex.Store({
             // @ts-ignore
             state.styleMap[id] = style;
         },
+        // 添加对象实例信息
         // 增加设备实例item
         ADDEQUIP(state, item): void {
             // @ts-ignore