Browse Source

设备优化

zhangyu 4 years ago
parent
commit
d014bc80b0

+ 0 - 1
src/components/editview/basePlanEditer.vue

@@ -686,7 +686,6 @@ export default {
                 if (!this.changeScaleByClick) {
                     bus.$emit("mouseScale", scale / this.initScale);
                 }
-                console.trace(scale);
             },
         },
     },

+ 3 - 2
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -55,7 +55,7 @@
                             </div>
                         </div>
                         <div class="base-property-item" style="flex: 1; padding: 0">
-                            <el-input-number
+                            <!-- <el-input-number
                                 style="width: 100%"
                                 v-model="size"
                                 @change="setStyle"
@@ -64,7 +64,8 @@
                                 :min="1"
                                 :max="20"
                                 :maxlength="100"
-                            ></el-input-number>
+                            ></el-input-number> -->
+                            <el-input style="width: 100%" v-model="size" @change="setStyle" type="number" size="mini" placeholder="输入字符大小" />
                         </div>
                     </div>
                 </div>

+ 2 - 4
src/lib/item/SPlanEquipment.ts

@@ -63,8 +63,6 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         this._formula = val;
         try {
             const textList = JSON.parse(this._formula);
-            const font = this.textItemList[0]?.font ? this.textItemList[0]?.font : new SFont("sans-serif", 12);
-            const color = this.textItemList[0]?.color ? this.textItemList[0]?.color : new SColor("#1F2429");
             if (this.scene) {
                 this.textItemList.forEach((textItem) => {
                     this.scene.removeItem(textItem);
@@ -86,8 +84,8 @@ export class SPlanEquipment extends SBaseIconTextEdit {
                     // }
                     // TODO: obj.moveTo(this.img.width * 0.5, -(this.font.size * 1.25 * 0.5) + (index * this.font.size) - (textList.length - 1) * 0.5 * this.font.size);
                     obj.moveTo(this.img.width * 0.5, this.font.size * (index - 0.125 - 0.5 * textList.length));
-                    obj.font = font;
-                    obj.color = color;
+                    obj.font = this.font;
+                    obj.color = this.color;
                     obj.isTransform = false;
                     obj.showSelect = false;
                     textItemList.push(obj);

+ 2 - 2
src/store/index.ts

@@ -87,7 +87,7 @@ export default new Vuex.Store({
                 color: "#1F2429",
                 size: 12,
                 url: "tognyong2020102700.svg",
-                formula: JSON.stringify(["设备实例"]),
+                formula: JSON.stringify([]),
             };
             // 空间默认样式
             data.defaultZoneStyle = {
@@ -97,7 +97,7 @@ export default new Vuex.Store({
                 lineStyle: 0,
                 fillColor: "#007cc880",
                 strokeColor: "#007CC8ff",
-                formula: JSON.stringify(["空间实例"]),
+                formula: JSON.stringify([]),
             }
             state.styleMap = data;
         },