yx 4 лет назад
Родитель
Сommit
b492d4523d

+ 2 - 0
src/components/baseEditer.vue

@@ -412,6 +412,8 @@ export default {
             document.getElementById("canvas").focus();
         },
         getBus() {
+            // 取消所有监听,防止触发多次监听
+            bus.$off()
             // 添加设备
             bus.$on("addEquip", () => {
                 // console.log("addEquip");

+ 4 - 14
src/components/edit/equipmentAttr.vue

@@ -59,17 +59,6 @@ export default {
     },
 
     beforeMount() {},
-    watch: {
-        focusItemList: {
-            handler(newV, oldV) {
-                if (newV !== oldV) {
-                    console.log('%c===================', 'color:blue', newV)
-                    this.init()
-                }
-            },
-            deep: true,
-        },
-    },
     created() {
         this.init()
     },
@@ -82,11 +71,11 @@ export default {
         },
         init() {
             // 设置设备名称
-            window._focusItem = this.focusItemList.itemList[0]
+            // window._focusItem = this.focusItemList.itemList[0]
             this.equipmentData = this.focusItemList.itemList[0].toData()
             this.equipmentName = this.equipmentData.Name
             this.equipmentName = this.equipmentData.Name
-            this.InfoList = this.equipmentData.InfoList
+            this.InfoList = JSON.parse(JSON.stringify(this.equipmentData.InfoList))
             this.info = []
             this.InfoList.map((item) => {
                 this.info.push(item.Name)
@@ -108,9 +97,10 @@ export default {
 <style lang='less' scoped>
 .equipment-attr {
     width: 100%;
-    height: 100%;
+    height: 500px;
     padding: 12px 16px;
     box-sizing: border-box;
+    overflow-y: scroll;
     //   background-color: lightblue;
     .contain {
         margin: 10px 0;

+ 69 - 64
src/components/edit/right_toolbar.vue

@@ -19,8 +19,8 @@
                             <Icon style="vertical-align: middle;" :name="isLock?'lock':'unlock'" />
                         </li>
                     </ul>
-                    <equipment-attr v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
-                    <attrSelect v-else :type="attrType" :focusItemList="focusItemList" />
+                    <equipment-attr :key="key" v-if="attrType === 'Equipment'" :focusItemList="focusItemList"/>
+                    <attrSelect v-else-if="attrType" :type="attrType" :focusItemList="focusItemList" />
                     <!-- <attrSelect v-show="attrType !== 'Equipment' " :type="attrType" :focusItemList="focusItemList" /> -->
                 </div>
             </a-tab-pane>
@@ -83,7 +83,7 @@ export default {
         focusItemList: {
             type: Object,
             default: function() {
-                return [];
+                return {};
             },
             required: false
         }
@@ -101,7 +101,8 @@ export default {
             elementData: [],
             key: "",
             isLock: true,
-            aspectRatio: 1 // 元素宽高比
+            aspectRatio: 1, // 元素宽高比
+            key:1
         };
     },
     methods: {
@@ -182,68 +183,72 @@ export default {
     },
     watch: {
         focusItemList: function(newVal) {
+            // return true;
+            console.log('=================')
             console.log('focusItemList',newVal)
             this.attrType = newVal.itemType;
-            if (newVal.itemList.length !== 1) {
-                this.msgList.forEach(item => {
-                    if (item.name == "X") {
-                        item.msg = 0;
-                    }
-                    if (item.name == "Y") {
-                        item.msg = 0;
-                    }
-                    if (item.name == "Width") {
-                        item.msg = 0;
-                    }
-                    if (item.name == "Height") {
-                        item.msg = 0;
-                    }
-                });
-                this.aspectRatio = 1;
-            } else {
-                // 属性输入框宽高显示的数值
-                let inputW, inputH;
-                this.msgList.forEach(item => {
-                    const Item = newVal.itemList[0];
-                    const width = Item.boundingRect().width;
-                    const height = Item.boundingRect().height;
-                    if (item.name == "X") {
-                        item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).x;
-                    }
-                    if (item.name == "Y") {
-                        item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).y;
-                    }
-                    if (item.name == "Width") {
-                        item.msg = width;
-                        // Icon显示图片宽
-                        if (Item instanceof SImageLegendItem) {
-                            item.msg = Item.img.width;
-                        }
-                        // 针对图片及Icon
-                        if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
-                            item.disable = false;
-                        } else {
-                            item.disable = true;
-                        }
-                        inputW = item.msg;
-                    }
-                    if (item.name == "Height") {
-                        item.msg = height;
-                        // Icon显示图片高
-                        if (Item instanceof SImageLegendItem) {
-                            item.msg = Item.img.height;
-                        }
-                        // 针对图片及Icon
-                        if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
-                            item.disable = false;
-                        } else {
-                            item.disable = true;
-                        }
-                        inputH = item.msg;
-                    }
-                });
-                this.aspectRatio = inputW / inputH;
-            }
+            this.key++
+            // if (newVal.itemList.length !== 1) {
+            //     this.msgList.forEach(item => {
+            //         if (item.name == "X") {
+            //             item.msg = 0;
+            //         }
+            //         if (item.name == "Y") {
+            //             item.msg = 0;
+            //         }
+            //         if (item.name == "Width") {
+            //             item.msg = 0;
+            //         }
+            //         if (item.name == "Height") {
+            //             item.msg = 0;
+            //         }
+            //     });
+            //     this.aspectRatio = 1;
+            // } else {
+                
+            //     // 属性输入框宽高显示的数值
+            //     let inputW, inputH;
+            //     this.msgList.forEach(item => {
+            //         const Item = newVal.itemList[0];
+            //         const width = Item.boundingRect().width;
+            //         const height = Item.boundingRect().height;
+            //         if (item.name == "X") {
+            //             item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).x;
+            //         }
+            //         if (item.name == "Y") {
+            //             item.msg = Item.mapToScene(Item.boundingRect().left, Item.boundingRect().top).y;
+            //         }
+            //         if (item.name == "Width") {
+            //             item.msg = width;
+            //             // Icon显示图片宽
+            //             if (Item instanceof SImageLegendItem) {
+            //                 item.msg = Item.img.width;
+            //             }
+            //             // 针对图片及Icon
+            //             if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
+            //                 item.disable = false;
+            //             } else {
+            //                 item.disable = true;
+            //             }
+            //             inputW = item.msg;
+            //         }
+            //         if (item.name == "Height") {
+            //             item.msg = height;
+            //             // Icon显示图片高
+            //             if (Item instanceof SImageLegendItem) {
+            //                 item.msg = Item.img.height;
+            //             }
+            //             // 针对图片及Icon
+            //             if (Item instanceof SImageMarkerItem || Item instanceof SImageLegendItem) {
+            //                 item.disable = false;
+            //             } else {
+            //                 item.disable = true;
+            //             }
+            //             inputH = item.msg;
+            //         }
+            //     });
+            //     this.aspectRatio = inputW / inputH;
+            // }
         }
     }
 };

+ 2 - 20
src/lib/items/SEquipmentItem.ts

@@ -84,25 +84,9 @@ export class SEquipmentItem extends SObjectItem {
     set info(data) {
         let { index, name } = data
         // 更新信息点名称
-        // 新增
-        /* if (this.epData && index === this.textArr.length) {
-            let lastText = this.epData.InfoList[index - 1]
-            this.epData.InfoList.push(Object.assign({}, lastText, { Name: name }))
-            console.log(this.epData)
-            let textItem = new STextItem(this);
-            textItem.backgroundColor = new SColor(lastText.Background);
-            textItem.width = lastText.Width;
-            textItem.height = lastText.Height;
-            textItem.text = name;
-            textItem.font.size = lastText.FontSize;
-            textItem.color = new SColor(lastText.Color);
-            textItem.pos.x = lastText.X;
-            textItem.pos.y = lastText.Y + 20;
-            this.textArr.push(textItem)
-        } */
         if (this.epData && index < this.epData.InfoList.length) {
             this.textArr[index + 1].text = name
-            this.epData.InfoList[index + 1].Name = name
+            this.epData.InfoList[index].Name = name
         }
         this.update();
 
@@ -115,7 +99,7 @@ export class SEquipmentItem extends SObjectItem {
      */
     constructor(parent: SGraphItem | null, epData: EquipmentData) {
         super(parent);
-        console.log(epData);
+        if (epData) epData = JSON.parse(JSON.stringify(epData))
         epData && (this.epData = epData);
         this.moveable = true;
         this.id = epData.ID;
@@ -150,7 +134,6 @@ export class SEquipmentItem extends SObjectItem {
      * @param epData 设备信息
      */
     loadEquipment(epData: EquipmentData): void {
-        console.log('============loadEquipment')
         // 位置
         this.x = epData.Pos.X;
         this.y = epData.Pos.Y;
@@ -215,7 +198,6 @@ export class SEquipmentItem extends SObjectItem {
         return true;
     } // Function onDoubleClick()
 
-
     /**
      * 宽高发生变化
      *